diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-20 21:31:03 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-20 21:31:03 +0000 |
commit | a5d34b86132607858f7a3df3539170e91008ce62 (patch) | |
tree | daf2111b0b6c7216cbb457c8a7e8a51ce1ed2460 /include/autotools.mk | |
parent | 42425cccfcc75c9da18ee821b1cf6570c7a0d7ba (diff) | |
download | upstream-a5d34b86132607858f7a3df3539170e91008ce62.tar.gz upstream-a5d34b86132607858f7a3df3539170e91008ce62.tar.bz2 upstream-a5d34b86132607858f7a3df3539170e91008ce62.zip |
autotools.mk: fix autoreconf in subdirectories, thanks field_it for spotting this
SVN-Revision: 29835
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 f7b633d96c..c5ba748ab9 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -43,7 +43,7 @@ define autoreconf $(if $(word 2,$(3)),--no-recursive) \ -B $(STAGING_DIR_HOST)/share/aclocal \ $(patsubst %,-I %,$(5)) \ - $(patsubst %,-I %,$(4)) $(4) || true; \ + $(patsubst %,-I %,$(4)) $(p) || true; \ fi; \ ) \ ); |