diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-02 18:18:38 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-02 18:18:38 +0000 |
commit | 1bba18de7a6c725ad4758393d329d50222a18f15 (patch) | |
tree | 95f82336295a031ac32faabe94efa70430bc97c1 /include | |
parent | 4878704f1a5eac3f6b6a1dbc026c5ece160d66da (diff) |
[include] autotools.mk: -B is not passed on by autoreconf, use -I instead - fixes PKG_MACRO_PATHS
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25312 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-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 2851731ef..24f9b721d 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; \ ) \ |