projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f40ecd
)
fix autoconf compilation (#3956)
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 8 Sep 2008 15:59:08 +0000
(15:59 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 8 Sep 2008 15:59:08 +0000
(15:59 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12554
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
tools/autoconf/Makefile
patch
|
blob
|
history
diff --git
a/tools/autoconf/Makefile
b/tools/autoconf/Makefile
index
cf66563
..
30ca2d2
100644
(file)
--- 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