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

autotools.mk: if ./autogen.sh exists, call that. Call autoreconfig only if configure.in or configure.ac exists

SVN-Revision: 24319
This commit is contained in:
Jo-Philipp Wich 2010-12-08 01:15:38 +00:00
parent 591190e215
commit 69aeb3a06c

View File

@ -23,7 +23,14 @@ define libtool_remove_files
endef
define autoreconf
(cd $(PKG_BUILD_DIR); $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS));
(cd $(PKG_BUILD_DIR); \
if [ -x ./autogen.sh ]; then \
./autogen.sh; \
elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \
$(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \
$(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS); \
fi \
);
endef
Hooks/InstallDev/Post += libtool_remove_files