]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Stop on error in autogen.sh
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 1 Nov 2009 18:44:19 +0000 (19:44 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Tue, 5 Jan 2010 17:53:00 +0000 (18:53 +0100)
autogen.sh

index 255fb5e256df58e7971aaf53a2f0f8612fdad60b..6c96c672203b9c5c327dd836f9c3f918fc0dd224 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
-autoheader && autoconf
+set -e
 
+autoheader
+autoconf
 echo "Now run ./configure and make"