Skip to content
Snippets Groups Projects
Commit 6541593b authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

autotools.mk: introduce PKG_REMOVE_FILES to delete certain files after...

autotools.mk: introduce PKG_REMOVE_FILES to delete certain files after applying patches and before doing any fixups

SVN-Revision: 24348
parent 00d30842
No related branches found
No related tags found
No related merge requests found
...@@ -17,11 +17,13 @@ endef ...@@ -17,11 +17,13 @@ endef
define autoreconf define autoreconf
(cd $(PKG_BUILD_DIR); \ (cd $(PKG_BUILD_DIR); \
$(patsubst %,rm -f %;,$(PKG_REMOVE_FILES)) \
if [ -x ./autogen.sh ]; then \ if [ -x ./autogen.sh ]; then \
./autogen.sh || true; \ ./autogen.sh || true; \
elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \ elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \
rm -f ./GNUmakefile; \ [ -f ./aclocal.m4 ] && [ ! -f ./acinclude.m4 ] && mv aclocal.m4 acinclude.m4; \
$(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \ $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
-B $(STAGING_DIR)/host/share/aclocal \
$(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \ $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \
fi \ fi \
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment