Skip to content

Commit 0bd5a1f

Browse files
committed
Tweak autogen.sh.
1 parent afc5082 commit 0bd5a1f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2016-12-25 Bruno Haible <bruno@clisp.org>
2+
3+
Tweak autogen.sh.
4+
* autogen.sh: Emit a "done" diagnostic when autogen.sh completed successfully.
5+
16
2016-12-25 Bruno Haible <bruno@clisp.org>
27

38
Reorder Makefile.devel.

autogen.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if test $skip_gnulib = false; then
6666
fi
6767
fi
6868

69-
make -f Makefile.devel totally-clean all
69+
make -f Makefile.devel totally-clean all || exit $?
7070

7171
# Copy files into the libcharset subpackage, so that libcharset/autogen.sh
7272
# does not need to invoke gnulib-tool nor automake.
@@ -81,5 +81,7 @@ for file in codeset.m4 fcntl-o.m4 glibc21.m4 relocatable-lib.m4 visibility.m4; d
8181
done
8282

8383
(cd libcharset
84-
./autogen.sh
84+
./autogen.sh || exit $?
8585
)
86+
87+
echo "$0: done. Now you can run './configure'."

0 commit comments

Comments
 (0)