fix autoconf compilation (#3956)

SVN-Revision: 12554
This commit is contained in:
Felix Fietkau 2008-09-08 15:59:08 +00:00
parent 90904e3704
commit 480864baef
1 changed files with 3 additions and 4 deletions

View File

@ -22,16 +22,15 @@ define Build/Configure
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
export SHELL="$(BASH)"; $(MAKE) -C $(PKG_BUILD_DIR)
endef
define Build/Install
$(MAKE) -C $(PKG_BUILD_DIR) install
export SHELL="$(BASH)"; $(MAKE) -C $(PKG_BUILD_DIR) install
endef
define Build/Clean
$(MAKE) -C $(PKG_BUILD_DIR) uninstall
$(MAKE) -C $(PKG_BUILD_DIR) clean
export SHELL="$(BASH)"; $(MAKE) -C $(PKG_BUILD_DIR) uninstall
$(call Build/Clean/Default)
endef