[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Quilt-dev] address@hidden: [bugs #10902] patches command output broken]
From: |
Martin Quinson |
Subject: |
[Quilt-dev] address@hidden: [bugs #10902] patches command output broken] |
Date: |
Fri, 5 Nov 2004 10:58:47 +0100 |
User-agent: |
Mutt/1.5.6+20040722i |
Hello,
I'm really sorry of my current lack of time wrt quilt, and I hope that
things get better in the near future. In the meanwhile, I wanted to bring
this bug to your attention. I checked the CVS, and it looks like it were not
fixed yet.
HTH,
Mt.
----- Forwarded message from anonymous <address@hidden> -----
Subject: [bugs #10902] patches command output broken
From: anonymous <address@hidden>
To: address@hidden
Date: Thu, 04 Nov 2004 01:13:08 +0100
This mail is an automated notification from the bugs tracker
of the project: patchwork quilt.
/**************************************************************************/
[bugs #10902] Full Item Snapshot:
URL: <http://savannah.nongnu.org/bugs/?func=detailitem&item_id=10902>
Project: patchwork quilt
Submitted by: 0
On: Wed 11/03/2004 at 19:16
Category: None
Severity: 5 - Average
Item Group: None
Resolution: None
Privacy: Public
Assigned to: None
Status: Open
Summary: patches command output broken
Original Submission: A bug crept into version 0.37 that breaks the output of
the "patches" command. In two places a dereference of the shell variable
"patch" was omitted.
The patch to fix this is:
--- quilt/quilt/patches.in 17 Oct 2004 20:58:42 -0000 1.15
+++ quilt/quilt/patches.in 4 Nov 2004 00:14:59 -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
}
For detailed info, follow this link:
<http://savannah.nongnu.org/bugs/?func=detailitem&item_id=10902>
_______________________________________________
Message sent via/by Savannah
http://savannah.nongnu.org/
----- End forwarded message -----
signature.asc
Description: Digital signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Quilt-dev] address@hidden: [bugs #10902] patches command output broken],
Martin Quinson <=