Browse Source

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

SVN-Revision: 24574
Jo-Philipp Wich 15 years ago
parent
commit
249693d50b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/autotools.mk

+ 1 - 1
include/autotools.mk

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