fix autoconf compilation (#3956)

SVN-Revision: 12554
v19.07.3_mercusys_ac12_duma
Felix Fietkau 16 years ago
parent 90904e3704
commit 480864baef

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

Loading…
Cancel
Save