automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-69-g0c8b07


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-69-g0c8b072
Date: Sat, 19 Jan 2008 09:23:32 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=0c8b0727bb8b9543ce4d07a47b67cf5cb4f494ae

The branch, branch-1-10 has been updated
       via  0c8b0727bb8b9543ce4d07a47b67cf5cb4f494ae (commit)
      from  1dbcd16626bc981ba1fed8f5e8befc9bc33b063a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0c8b0727bb8b9543ce4d07a47b67cf5cb4f494ae
Author: Ralf Wildenhues <address@hidden>
Date:   Fri Nov 23 00:06:57 2007 +0100

    * lib/ylwrap: Cope with white space in `PROGRAM' and `pwd`.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog  |    2 ++
 lib/ylwrap |   12 ++++++------
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index da5cfca..df3c699 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2008-01-19  Ralf Wildenhues  <address@hidden>
 
+       * lib/ylwrap: Cope with white space in `PROGRAM' and `pwd`.
+
        * lib/am/tags.am (ID, TAGS, CTAGS): Make awk scripts portable again.
        (CTAGS): Drop unneeded variable `here'.
 
diff --git a/lib/ylwrap b/lib/ylwrap
index 5cee67e..7fe7c3f 100755
--- a/lib/ylwrap
+++ b/lib/ylwrap
@@ -1,10 +1,10 @@
 #! /bin/sh
 # ylwrap - wrapper for lex/yacc invocations.
 
-scriptversion=2005-05-14.22
+scriptversion=2007-11-22.22
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005
-#   Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005,
+# 2007  Free Software Foundation, Inc.
 #
 # Written by Tom Tromey <address@hidden>.
 #
@@ -101,14 +101,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=$?
 


hooks/post-receive
--
GNU Automake




reply via email to

[Prev in Thread] Current Thread [Next in Thread]