1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 18:53:52 +02:00

autotools.mk: always pass -I m4, some package don't seem to set correct AMFLAGS (or any at all..)

SVN-Revision: 24574
This commit is contained in:
Jo-Philipp Wich 2010-12-15 01:24:16 +00:00
parent 6489a9c575
commit 249693d50b

View File

@ -38,7 +38,7 @@ define autoreconf
$(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \ $(AM_TOOL_PATHS) $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
-B $(STAGING_DIR_HOST)/share/aclocal \ -B $(STAGING_DIR_HOST)/share/aclocal \
$(patsubst %,-B %,$(5)) \ $(patsubst %,-B %,$(5)) \
$(patsubst %,-I %,$(4)) $(4) || true; \ $(patsubst %,-I %,$(4)) -I m4 $(4) || true; \
fi; \ fi; \
) \ ) \
); );