diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-15 01:24:16 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-15 01:24:16 +0000 |
commit | 249693d50b0071913c7371f21c692d8f54a77a92 (patch) | |
tree | 0ea5c821d9c212ef323f4480786464709aaf6854 | |
parent | 6489a9c575cd8899d274bfd214ee91059bcfb272 (diff) | |
download | upstream-249693d50b0071913c7371f21c692d8f54a77a92.tar.gz upstream-249693d50b0071913c7371f21c692d8f54a77a92.tar.bz2 upstream-249693d50b0071913c7371f21c692d8f54a77a92.zip |
autotools.mk: always pass -I m4, some package don't seem to set correct AMFLAGS (or any at all..)
SVN-Revision: 24574
-rw-r--r-- | include/autotools.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/autotools.mk b/include/autotools.mk index 4d98a7cd0a..2148f40cfd 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -38,7 +38,7 @@ define autoreconf $(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \ -B $(STAGING_DIR_HOST)/share/aclocal \ $(patsubst %,-B %,$(5)) \ - $(patsubst %,-I %,$(4)) $(4) || true; \ + $(patsubst %,-I %,$(4)) -I m4 $(4) || true; \ fi; \ ) \ ); |