Commit 594f0164 authored by Simon Stridsberg's avatar Simon Stridsberg Committed by Dridi Boukelmoune

Fix .circleci/config.yml to match changes in configure.ac

parent fb73130b
......@@ -82,9 +82,9 @@ jobs:
touch .is_weekly
# If version is "trunk", override version to add date
if grep 'AC_INIT.*trunk.*' ./configure.ac; then
sed -i -e "s/AC_INIT(\[\(.*\)\], \[\(.*\)\], \[\(.*\)\])/AC_INIT([\1], [$(date +%Y%m%d)], [\3])/" ./configure.ac
sed -i -e "s/AC_INIT(\[\(.*\)\],\[\(.*\)\],\[\(.*\)\])/AC_INIT([\1],[$(date +%Y%m%d)],[\3])/" ./configure.ac
else
sed -i -e "s/AC_INIT(\[\(.*\)\], \[\(.*\)\], \[\(.*\)\])/AC_INIT([\1], [\2-$(date +%Y%m%d)], [\3])/" ./configure.ac
sed -i -e "s/AC_INIT(\[\(.*\)\],\[\(.*\)\],\[\(.*\)\])/AC_INIT([\1],[\2-$(date +%Y%m%d)],[\3])/" ./configure.ac
fi
./autogen.des
make dist -j 16
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment