projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7f64a5
)
fix autoconf compilation (#3956)
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 8 Sep 2008 15:59:08 +0000
(15:59 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
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
This page took
0.02274 seconds
and
4
git commands to generate.