diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-08 11:55:41 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-12-08 11:55:41 +0000 |
commit | fa3c5ac38aed85b86cdf159e59524d5fcb3f70fc (patch) | |
tree | 42ed054596517bcf668dcd81afa8422865c1e0a9 /include/autotools.mk | |
parent | 502dc1cb39aaf57dd057cda3999a25eff39f963b (diff) | |
download | mtk-20170518-fa3c5ac38aed85b86cdf159e59524d5fcb3f70fc.zip mtk-20170518-fa3c5ac38aed85b86cdf159e59524d5fcb3f70fc.tar.gz mtk-20170518-fa3c5ac38aed85b86cdf159e59524d5fcb3f70fc.tar.bz2 |
autotools.mk: remove GNUmakefile before running autoreconf (spotted libgcrypt++)
SVN-Revision: 24344
Diffstat (limited to 'include/autotools.mk')
-rw-r--r-- | include/autotools.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/autotools.mk b/include/autotools.mk index 9ba3fc3..a1a5d5d 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -20,6 +20,7 @@ define autoreconf if [ -x ./autogen.sh ]; then \ ./autogen.sh || true; \ elif [ -f ./configure.ac ] || [ -f ./configure.in ]; then \ + rm -f ./GNUmakefile; \ $(STAGING_DIR_HOST)/bin/autoreconf -v -f -i -s \ $(patsubst %,-I %,$(PKG_LIBTOOL_PATHS)) $(PKG_LIBTOOL_PATHS) || true; \ fi \ |