Always add newer files when releasing
This commit is contained in:
parent
f2be582cd5
commit
6b5cd55fbf
1 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ LIBNFC_AUTOTOOLS_ARCHIVE=libnfc-$LIBNFC_VERSION.tar.gz
|
||||||
echo ">>> Cleaning sources..."
|
echo ">>> Cleaning sources..."
|
||||||
# First, clean what we can
|
# First, clean what we can
|
||||||
rm -f configure config.h config.h.in
|
rm -f configure config.h config.h.in
|
||||||
autoreconf -is && ./configure && make distclean
|
autoreconf -is --force && ./configure && make distclean
|
||||||
git clean -dfX
|
git clean -dfX
|
||||||
echo "<<< Sources cleaned."
|
echo "<<< Sources cleaned."
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ if [ ! -f $LIBNFC_AUTOTOOLS_ARCHIVE ]; then
|
||||||
echo ">>> Autotooled archive generation..."
|
echo ">>> Autotooled archive generation..."
|
||||||
|
|
||||||
# Second, generate dist archive (and test it)
|
# Second, generate dist archive (and test it)
|
||||||
autoreconf -is && ./configure && make distcheck
|
autoreconf -is --force && ./configure && make distcheck
|
||||||
|
|
||||||
# Finally, clean up
|
# Finally, clean up
|
||||||
make distclean
|
make distclean
|
||||||
|
@ -40,7 +40,7 @@ if [ ! -f $LIBNFC_DOC_ARCHIVE ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build documentation
|
# Build documentation
|
||||||
autoreconf -is && ./configure --enable-doc && make doc || false
|
autoreconf -is --force && ./configure --enable-doc && make doc || false
|
||||||
|
|
||||||
# Create archive
|
# Create archive
|
||||||
cp -r doc/html $LIBNFC_DOC_DIR
|
cp -r doc/html $LIBNFC_DOC_DIR
|
||||||
|
|
Loading…
Reference in a new issue