projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add #870 patch, fixes compilation with newer kernel-headers, also fixes fc5 compilation
[openwrt.git]
/
include
/
package.mk
diff --git
a/include/package.mk
b/include/package.mk
index
8a10569
..
f0c5511
100644
(file)
--- a/
include/package.mk
+++ b/
include/package.mk
@@
-291,10
+291,14
@@
endef
define Build/Configure/Default
(cd $(PKG_BUILD_DIR) ; \
define Build/Configure/Default
(cd $(PKG_BUILD_DIR) ; \
- [ -e configure.in ] && touch configure.in ; \
- [ -e aclocal.m4 ] && touch aclocal.m4 ; \
- [ -e Makefile.in ] && touch Makefile.in ; \
- [ -e configure ] && touch configure ; \
+ touch configure.in ; \
+ touch aclocal.m4 ; \
+ touch Makefile.in ; \
+ touch configure ; \
+ touch acinclude.m4 ; \
+ touch config.h.in ; \
+ touch configure.ac ; \
+ touch stamp-h.in ; \
);
(cd $(PKG_BUILD_DIR)/$(strip $(3)); \
if [ -x configure ]; then \
);
(cd $(PKG_BUILD_DIR)/$(strip $(3)); \
if [ -x configure ]; then \
This page took
0.020849 seconds
and
4
git commands to generate.