1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-20 07:38:28 +02:00

autotools.mk: fix autoreconf in subdirectories, thanks field_it for spotting this

SVN-Revision: 29835
This commit is contained in:
Jo-Philipp Wich 2012-01-20 21:31:03 +00:00
parent 42425cccfc
commit a5d34b8613

View File

@ -43,7 +43,7 @@ define autoreconf
$(if $(word 2,$(3)),--no-recursive) \ $(if $(word 2,$(3)),--no-recursive) \
-B $(STAGING_DIR_HOST)/share/aclocal \ -B $(STAGING_DIR_HOST)/share/aclocal \
$(patsubst %,-I %,$(5)) \ $(patsubst %,-I %,$(5)) \
$(patsubst %,-I %,$(4)) $(4) || true; \ $(patsubst %,-I %,$(4)) $(p) || true; \
fi; \ fi; \
) \ ) \
); );