]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* lib/elisp-comp: Use `(exit N); exit N', not `(exit N); exit';
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 2 Feb 2005 21:08:46 +0000 (21:08 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 2 Feb 2005 21:08:46 +0000 (21:08 +0000)
see 2004-12-17.
* lib/mdate-sh, lib/py-compile, lib/ylwrap: Exit with nonzero
status if a write failure occurs with --help or --version option,
as below.

ChangeLog
lib/elisp-comp
lib/mdate-sh
lib/py-compile
lib/ylwrap

index 84de746deb35fd2a8a0ee82ce4d7f7d3e6f130c7..a05a88def9b9c9813e113bdb541377533743d11f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-02-02  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * lib/elisp-comp: Use `(exit N); exit N', not `(exit N); exit';
+       see 2004-12-17.
+       * lib/mdate-sh, lib/py-compile, lib/ylwrap: Exit with nonzero
+       status if a write failure occurs with --help or --version option,
+       as below.
+
 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
 
        * lib/depcomp: Exit with nonzero status if a write failure occurs
index e194b971ccda397e7da6d214c8ca370dd5a3d820..744bd27b62a07d92c42b21d3f3c9b80e3df307df 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 # Copyright (C) 1995, 2000, 2003, 2004, 2005  Free Software Foundation, Inc.
 
-scriptversion=2005-02-02.21
+scriptversion=2005-02-02.22
 
 # Franc,ois Pinard <pinard@iro.umontreal.ca>, 1995.
 #
@@ -77,7 +77,7 @@ cp "$@" $tempdir
   mv *.elc ..
 ) || exit $?
 
-(exit 0); exit
+(exit 0); exit 0
 
 # Local Variables:
 # mode: shell-script
index 881782eb55e450d170a16422ca9d50fb09afbe7a..c1f037a27eca162929e0010215e1548c1f003d77 100755 (executable)
@@ -1,9 +1,10 @@
 #!/bin/sh
 # Get modification time of a file or directory and pretty-print it.
 
-scriptversion=2004-12-08.12
+scriptversion=2005-02-02.22
 
-# Copyright (C) 1995, 1996, 1997, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software
+# Foundation, Inc.
 # written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
 #
 # This program is free software; you can redistribute it and/or modify
@@ -42,11 +43,11 @@ Pretty-print the modification time of FILE.
 
 Report bugs to <bug-automake@gnu.org>.
 EOF
-    exit 0
+    exit $?
     ;;
   -v | --v*)
     echo "mdate-sh $scriptversion"
-    exit 0
+    exit $?
     ;;
 esac
 
index f6bba63f4611ac78cf101b156d87b275696ac0c9..ca2a05cc4aa1725762f7e2b31b351b903c1bee62 100755 (executable)
@@ -1,9 +1,9 @@
 #!/bin/sh
 # py-compile - Compile a Python program
 
-scriptversion=2004-12-05.17
+scriptversion=2005-02-02.22
 
-# Copyright (C) 2000, 2001, 2003, 2004  Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2003, 2004, 2005  Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -68,11 +68,11 @@ Example:
 
 Report bugs to <bug-automake@gnu.org>.
 EOF
-      exit 0
+      exit $?
       ;;
     -v|--v*)
       echo "py-compile $scriptversion"
-      exit 0
+      exit $?
       ;;
     *)
       files="$files $1"
index e66a95b603fad3fba1924914158cac45ee3c8a00..10e4368b35f1c6e009caa923f5bc8dc5ff82f196 100755 (executable)
@@ -1,9 +1,9 @@
 #! /bin/sh
 # ylwrap - wrapper for lex/yacc invocations.
 
-scriptversion=2004-09-10.20
+scriptversion=2005-02-02.22
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
+# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005
 #   Free Software Foundation, Inc.
 #
 # Written by Tom Tromey <tromey@cygnus.com>.
@@ -56,11 +56,11 @@ Any number of OUTPUT,DESIRED pairs may be used.
 
 Report bugs to <bug-automake@gnu.org>.
 EOF
-    exit 0
+    exit $?
     ;;
   -v|--v*)
     echo "ylwrap $scriptversion"
-    exit 0
+    exit $?
     ;;
 esac