diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-02 18:18:38 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-02 18:18:38 +0000 |
commit | 4fec7f7edb0718c322e1ec574e0b02a227551db0 (patch) | |
tree | d8d0a3c78c646b8655a4fc13e9d4de0c3707ac2b /include/autotools.mk | |
parent | d5987b5db45ecb3ebe256e4b89cf94b153e29a32 (diff) | |
download | upstream-4fec7f7edb0718c322e1ec574e0b02a227551db0.tar.gz upstream-4fec7f7edb0718c322e1ec574e0b02a227551db0.tar.bz2 upstream-4fec7f7edb0718c322e1ec574e0b02a227551db0.zip |
autotools.mk: -B is not passed on by autoreconf, use -I instead - fixes PKG_MACRO_PATHS
SVN-Revision: 25312
Diffstat (limited to 'include/autotools.mk')
-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 2851731ef3..24f9b721dd 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -39,7 +39,7 @@ define autoreconf touch NEWS AUTHORS COPYING ChangeLog; \ $(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \ -B $(STAGING_DIR_HOST)/share/aclocal \ - $(patsubst %,-B %,$(5)) \ + $(patsubst %,-I %,$(5)) \ $(patsubst %,-I %,$(4)) $(4) || true; \ fi; \ ) \ |