Skip to content
Snippets Groups Projects
Commit 480864ba authored by Felix Fietkau's avatar Felix Fietkau
Browse files

fix autoconf compilation (#3956)

SVN-Revision: 12554
parent 90904e37
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment