]> sourceware.org Git - automake.git/commitdiff
another ylwrap fix from jim meyering
authorTom Tromey <tromey@redhat.com>
Sun, 1 Jun 1997 19:19:19 +0000 (19:19 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 1 Jun 1997 19:19:19 +0000 (19:19 +0000)
lib/ylwrap
ylwrap

index 8aaff0f6fdae7c6da53412f5b1286f62cd5ed1c2..fbae17bd7af84127a505978ed26c3eda5f2bcd01 100755 (executable)
@@ -70,7 +70,13 @@ if test $status -eq 0; then
    first=yes
    while test "$#" -ne 0; do
       if test -f "$1"; then
-        mv "$1" "../$2" || status=$?
+         # If $2 is an absolute path name, then just use that,
+         # otherwise prepend `../'.
+         case "$2" in
+          /*) target="$2";;
+          *) target="../$2";;
+        esac
+        mv "$1" "$target" || status=$?
       else
         # A missing file is only an error for the first file.  This
         # is a blatant hack to let us support using "yacc -d".  If -d
diff --git a/ylwrap b/ylwrap
index 8aaff0f6fdae7c6da53412f5b1286f62cd5ed1c2..fbae17bd7af84127a505978ed26c3eda5f2bcd01 100755 (executable)
--- a/ylwrap
+++ b/ylwrap
@@ -70,7 +70,13 @@ if test $status -eq 0; then
    first=yes
    while test "$#" -ne 0; do
       if test -f "$1"; then
-        mv "$1" "../$2" || status=$?
+         # If $2 is an absolute path name, then just use that,
+         # otherwise prepend `../'.
+         case "$2" in
+          /*) target="$2";;
+          *) target="../$2";;
+        esac
+        mv "$1" "$target" || status=$?
       else
         # A missing file is only an error for the first file.  This
         # is a blatant hack to let us support using "yacc -d".  If -d
This page took 0.027696 seconds and 5 git commands to generate.