We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 558538a commit 1a4fb4eCopy full SHA for 1a4fb4e
autogen.sh
@@ -1,9 +1,14 @@
1
#! /bin/sh
2
-autoreconf --install --symlink --force
3
-
4
5
-echo
6
-echo "------------------------------------------------------"
7
-echo "Initialized build system. You can now run ./configure "
8
9
+if autoreconf --install --symlink --force; then
+ echo
+ echo "------------------------------------------------------"
+ echo "Initialized build system. You can now run ./configure "
+else
10
+ echo "--------------------------"
11
+ echo "Running autoreconf failed."
12
13
14
+fi
0 commit comments