Переглянути джерело

autotools.mk: allow autogen.sh / autoreconf to fail (for now)

SVN-Revision: 24320
Jo-Philipp Wich 15 роки тому
батько
коміт
f3f3be3dfe
1 змінених файлів з 2 додано та 2 видалено
  1. 2 2
      include/autotools.mk

+ 2 - 2
include/autotools.mk

@@ -25,10 +25,10 @@ endef
 define autoreconf
 define autoreconf
 	(cd $(PKG_BUILD_DIR); \
 	(cd $(PKG_BUILD_DIR); \
 		if [ -x ./autogen.sh ]; then \
 		if [ -x ./autogen.sh ]; then \
-			./autogen.sh; \
+			./autogen.sh || true; \
 		elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \
 		elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \
 			$(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
 			$(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
-				$(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS); \
+				$(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \
 		fi \
 		fi \
 	);
 	);
 endef
 endef