Update references to configure.in

This commit is contained in:
Jerome Charaoui 2018-06-29 11:14:06 -04:00
parent 3384388267
commit 1e78c5b4a1
2 changed files with 7 additions and 7 deletions

View File

@ -5,18 +5,18 @@ Upstream
export VERSION=x.y.z export VERSION=x.y.z
* update `configure.in` and `ChangeLog` * update `configure.ac` and `ChangeLog`
perl -pi -E \ perl -pi -E \
"s{^AC_INIT\(\[backupninja\],\[[0-9.]+\],}{AC_INIT([backupninja],[$VERSION],}" \ "s{^AC_INIT\(\[backupninja\],\[[0-9.]+\],}{AC_INIT([backupninja],[$VERSION],}" \
configure.in && \ configure.ac && \
RELEASE_DATE=$(LC_ALL=C date '+%B %d, %Y') perl -pi -E \ RELEASE_DATE=$(LC_ALL=C date '+%B %d, %Y') perl -pi -E \
"s{^version\s+[0-9.]+\s+--\s+UNRELEASED$}{version $VERSION -- $RELEASE_DATE}" \ "s{^version\s+[0-9.]+\s+--\s+UNRELEASED$}{version $VERSION -- $RELEASE_DATE}" \
ChangeLog ChangeLog
* commit, tag and create the tarball: * commit, tag and create the tarball:
git commit configure.in ChangeLog \ git commit configure.ac ChangeLog \
-m "Releasing backupninja $VERSION" && \ -m "Releasing backupninja $VERSION" && \
git clean -fdx && \ git clean -fdx && \
git tag -s "backupninja-$VERSION" \ git tag -s "backupninja-$VERSION" \

View File

@ -8,10 +8,10 @@ fi
if [ "x$1" = "x-f" ] if [ "x$1" = "x-f" ]
then then
autoscan autoscan
[ -f "configure.in" ] && cp "configure.in" "configure.in.old" [ -f "configure.ac" ] && cp "configure.ac" "configure.ac.old"
mv -f "configure.scan" "configure.in" mv -f "configure.scan" "configure.ac"
echo "## This is just AUTOSCAN draft of configure.in" echo "## This is just AUTOSCAN draft of configure.ac"
$EDITOR "configure.in" $EDITOR "configure.ac"
fi fi
### použít jen když je třeba použít configure.h.in ### použít jen když je třeba použít configure.h.in