X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=ylwrap;h=84d563405e6e29a64a4ffdb07da262e2e5628dba;hb=181dd1c5a49707a7901562f374fecf94973cadcf;hp=e66a95b603fad3fba1924914158cac45ee3c8a00;hpb=2109ded23bb61f4f3b3eaf1081865ddc1aa2a4b2;p=pf3gnuchains%2Fgcc-fork.git diff --git a/ylwrap b/ylwrap index e66a95b603f..84d563405e6 100755 --- a/ylwrap +++ b/ylwrap @@ -1,10 +1,10 @@ #! /bin/sh # ylwrap - wrapper for lex/yacc invocations. -scriptversion=2004-09-10.20 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005, +# 2007, 2009 Free Software Foundation, Inc. # # Written by Tom Tromey . # @@ -19,8 +19,7 @@ scriptversion=2004-09-10.20 # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -56,11 +55,11 @@ Any number of OUTPUT,DESIRED pairs may be used. Report bugs to . EOF - exit 0 + exit $? ;; -v|--v*) echo "ylwrap $scriptversion" - exit 0 + exit $? ;; esac @@ -100,14 +99,14 @@ esac # FIXME: add hostname here for parallel makes that run commands on # other machines. But that might take us over the 14-char limit. dirname=ylwrap$$ -trap "cd `pwd`; rm -rf $dirname > /dev/null 2>&1" 1 2 3 15 +trap "cd '`pwd`'; rm -rf $dirname > /dev/null 2>&1" 1 2 3 15 mkdir $dirname || exit 1 cd $dirname case $# in - 0) $prog "$input" ;; - *) $prog "$@" "$input" ;; + 0) "$prog" "$input" ;; + *) "$prog" "$@" "$input" ;; esac ret=$? @@ -218,5 +217,6 @@ exit $ret # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: