projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78e0d83
)
[include] autotools.mk: if ./autogen.sh exists, call that. Call autoreconfig only...
author
jow
<jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 8 Dec 2010 01:15:38 +0000
(
01:15
+0000)
committer
jow
<jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 8 Dec 2010 01:15:38 +0000
(
01:15
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24319
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
include/autotools.mk
patch
|
blob
|
history
diff --git
a/include/autotools.mk
b/include/autotools.mk
index
a2d57d6
..
3203604
100644
(file)
--- a/
include/autotools.mk
+++ b/
include/autotools.mk
@@
-23,7
+23,14
@@
define libtool_remove_files
endef
define autoreconf
- (cd $(PKG_BUILD_DIR); $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS));
+ (cd $(PKG_BUILD_DIR); \
+ if [ -x ./autogen.sh ]; then \
+ ./autogen.sh; \
+ elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \
+ $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
+ $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS); \
+ fi \
+ );
endef
Hooks/InstallDev/Post += libtool_remove_files
This page took
0.027759 seconds
and
4
git commands to generate.