quilt-dev
[Top][All Lists]
Advanced

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

[Quilt-dev] [PATCH] 'patches' broken in 0.37


From: Brent Casavant
Subject: [Quilt-dev] [PATCH] 'patches' broken in 0.37
Date: Tue, 2 Nov 2004 13:51:59 -0600

It appears that a shell variable wasn't being dereferenced, causing
the output of all 'quilt patch' commands to be a set of lines (one
per applicable patch), that simply read:

--- cut here ---
patch
--- cut here ---

Thanks,
Brent Casavant

Index: quilt/patches.in
===================================================================
--- quilt/patches.in 17 Oct 2004 20:58:42 -0000 1.15
+++ quilt/patches.in 2 Nov 2004 19:47:17 -0000
@@ -45,7 +45,7 @@
  do
   if [ -f "$QUILT_PC/$patch/$file" ]
   then
-   echo "$prefix$(print_patch patch)"
+   echo "$prefix$(print_patch $patch)"
   fi
  done
 }
@@ -61,7 +61,7 @@
   if touched_by_patch $(patch_strip_level $patch) $patch \
      | grep -q "^$file_bre\$"
   then
-   echo "$prefix$(print_patch patch)"
+   echo "$prefix$(print_patch $patch)"
   fi
  done
 }

-- 
Brent Casavant             address@hidden        Forget bright-eyed and
Operating System Engineer  http://www.sgi.com/     bushy-tailed; I'm red-
Silicon Graphics, Inc.     44.8562N 93.1355W 860F  eyed and bushy-haired.




reply via email to

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