mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 04:49:42 +02:00
fix autoconf compilation (#3956)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12554 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d7f64a5f61
commit
b9791839b0
@ -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…
Reference in New Issue
Block a user