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 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
#!/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.
#
mv *.elc ..
) || exit $?
-(exit 0); exit
+(exit 0); exit 0
# Local Variables:
# mode: shell-script
#!/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
Report bugs to <bug-automake@gnu.org>.
EOF
- exit 0
+ exit $?
;;
-v | --v*)
echo "mdate-sh $scriptversion"
- exit 0
+ exit $?
;;
esac
#!/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
Report bugs to <bug-automake@gnu.org>.
EOF
- exit 0
+ exit $?
;;
-v|--v*)
echo "py-compile $scriptversion"
- exit 0
+ exit $?
;;
*)
files="$files $1"
#! /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>.
Report bugs to <bug-automake@gnu.org>.
EOF
- exit 0
+ exit $?
;;
-v|--v*)
echo "ylwrap $scriptversion"
- exit 0
+ exit $?
;;
esac