Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.

Commit 3110d6f

Browse files
simonviknigoroll
authored andcommitted
Fix .circleci/config.yml to match changes in configure.ac
1 parent 8997e88 commit 3110d6f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ jobs:
8282
touch .is_weekly
8383
# If version is "trunk", override version to add date
8484
if grep 'AC_INIT.*trunk.*' ./configure.ac; then
85-
sed -i -e "s/AC_INIT(\[\(.*\)\], \[\(.*\)\], \[\(.*\)\])/AC_INIT([\1], [$(date +%Y%m%d)], [\3])/" ./configure.ac
85+
sed -i -e "s/AC_INIT(\[\(.*\)\],\[\(.*\)\],\[\(.*\)\])/AC_INIT([\1],[$(date +%Y%m%d)],[\3])/" ./configure.ac
8686
else
87-
sed -i -e "s/AC_INIT(\[\(.*\)\], \[\(.*\)\], \[\(.*\)\])/AC_INIT([\1], [\2-$(date +%Y%m%d)], [\3])/" ./configure.ac
87+
sed -i -e "s/AC_INIT(\[\(.*\)\],\[\(.*\)\],\[\(.*\)\])/AC_INIT([\1],[\2-$(date +%Y%m%d)],[\3])/" ./configure.ac
8888
fi
8989
./autogen.des
9090
make dist -j 16

0 commit comments

Comments
 (0)