diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-08 15:59:08 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-08 15:59:08 +0000 |
commit | b9791839b0be699b8f5e5d5c044435ba91372bba (patch) | |
tree | f917688036f48da2039c43d801e395ff0cd2ec28 /tools | |
parent | d7f64a5f61ca6604c28d7b6da1c1bb863e5df044 (diff) |
fix autoconf compilation (#3956)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12554 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/autoconf/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/autoconf/Makefile b/tools/autoconf/Makefile index cf66563ea..30ca2d28d 100644 --- a/tools/autoconf/Makefile +++ b/tools/autoconf/Makefile @@ -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 |