diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-09-17 15:35:28 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-09-17 15:35:28 -0700 |
commit | dee26dfa11ac3936c84f42b83a0e1ec7ae2b15f9 (patch) | |
tree | 3422e706b3df5a1d1590ec125a57377bf72035d1 /autogen.sh | |
parent | 50bfc8243c7385f7e795bca26b539f57c167170c (diff) | |
download | emacs-dee26dfa11ac3936c84f42b83a0e1ec7ae2b15f9.tar.gz |
* Makefile.in: Run autogen/copy_autogen if autogen.sh fails,
to create 'configure'; problem reported by Andreas Schwab in
<http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00438.html>.
* autogen.sh: Exit with status 1 when failing due to missing tools,
reverting the 2012-09-10 change to this file.
* autogen/copy_autogen: Fail if one of the subsidiary actions fail.
Use 'cp -f' for the build-aux files, since the destinations are
typically read-only.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index dc8d53eec97..9cfaa40eee5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -201,7 +201,7 @@ This is not recommended - see the comments in \`copy_autogen'. Please report any problems with this script to bug-gnu-emacs@gnu.org . EOF - exit 101 # Exit status 101 means tools were missing. + exit 1 fi echo "Your system has the required tools, running autoreconf..." |