From 6b5cd55fbf8b5eeed117187d429eab1468e7622c Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Tue, 15 Jan 2013 14:28:34 +0100 Subject: [PATCH] Always add newer files when releasing --- make_release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make_release.sh b/make_release.sh index bbcbb51..662c284 100755 --- a/make_release.sh +++ b/make_release.sh @@ -12,7 +12,7 @@ LIBNFC_AUTOTOOLS_ARCHIVE=libnfc-$LIBNFC_VERSION.tar.gz echo ">>> Cleaning sources..." # First, clean what we can rm -f configure config.h config.h.in -autoreconf -is && ./configure && make distclean +autoreconf -is --force && ./configure && make distclean git clean -dfX echo "<<< Sources cleaned." @@ -20,7 +20,7 @@ if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then echo ">>> Autotooled archive generation..." # Second, generate dist archive (and test it) - autoreconf -is && ./configure && make distcheck + autoreconf -is --force && ./configure && make distcheck # Finally, clean up make distclean @@ -40,7 +40,7 @@ if [ ! -f $LIBNFC_DOC_ARCHIVE ]; then fi # Build documentation - autoreconf -is && ./configure --enable-doc && make doc || false + autoreconf -is --force && ./configure --enable-doc && make doc || false # Create archive cp -r doc/html $LIBNFC_DOC_DIR