Skip to content

Commit 96f8e50

Browse files
committed
Execute 'aclocal' when generating configuration files
This enables us to use pkg-config when looking for packages. Reimplement 'autogen.sh' with 'autoreconf -f' would have been a possibility, though it was discussed before and found unsuitable. See: <#1625>
1 parent a7cf5f8 commit 96f8e50

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/.tmp_versions
44
/Makefile.inc
55
/Makefile.modinc
6+
/aclocal.m4
67
/config.guess
78
/config.h
89
/config.log

src/autogen.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ case :$AUTOGEN_TARGET: in
88
[ -e config.guess ] || cp $automake_libdir/config.guess .
99
[ -e config.sub ] || cp $automake_libdir/config.sub .
1010
[ -e install-sh ] || cp $automake_libdir/install-sh .
11+
aclocal --force
1112
autoconf
1213
# autoconf only updates the timestamp if the output actually changed.
1314
# The target's timestamp must be updated or make is confused

0 commit comments

Comments
 (0)