Skip to content

Commit 5dc2b11

Browse files
committed
Add autoreconf to ./autogen.sh
1 parent d24c9bd commit 5dc2b11

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

autogen.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ fi
3636
echo "You must have autoconf installed to compile xmlsec."
3737
DIE=1
3838
}
39+
(autoreconf --version) < /dev/null > /dev/null 2>&1 || {
40+
echo
41+
echo "You must have autoreconf installed to compile xmlsec."
42+
DIE=1
43+
}
3944
(automake --version) < /dev/null > /dev/null 2>&1 || {
4045
echo
4146
echo "You must have automake installed to compile xmlsec."
@@ -76,6 +81,8 @@ echo "Running automake..."
7681
automake --gnu --add-missing
7782
echo "Running autoconf..."
7883
autoconf
84+
echo "Running autoreconf..."
85+
autoreconf -i
7986

8087
cd $THEDIR
8188

0 commit comments

Comments
 (0)