[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Quilt-dev] [patch 4/8]
From: |
John Vandenberg |
Subject: |
Re: [Quilt-dev] [patch 4/8] |
Date: |
Wed, 14 Sep 2005 09:34:52 +1000 |
On 9/14/05, address@hidden <address@hidden> wrote:
> Some find utilities (Mac OS X 10.4.2's for instance) choke if no search
> start directory is given before the first argument.
>
> This patch adds `.' in the gap to fix the problem.
There are two more cases of this.
Index: quilt/scripts/inspect.in
===================================================================
--- quilt.orig/scripts/inspect.in 2005-05-23 02:19:47.000000000 +1000
+++ quilt/scripts/inspect.in 2005-08-13 18:44:09.549590592 +1000
@@ -130,7 +130,7 @@
if ! [ -e $tmpdir/more-md5sums ]
then
( cd $RPM_BUILD_DIR
- find -type f \
+ find . -type f \
| sed -e 's:^.\/::' \
| xargs md5sum \
) > $tmpdir/more-md5sums
Index: quilt/scripts/dependency-graph.in
===================================================================
--- quilt.orig/scripts/dependency-graph.in 2004-06-07 06:17:06.000000000
+1000
+++ quilt/scripts/dependency-graph.in 2005-08-13 18:43:47.209668874 +1000
@@ -241,7 +241,7 @@
print STDERR "$ENV{QUILT_PC}/$patch does not exist;
skipping\n";
next;
}
- @files = split(/\n/, `cd $ENV{QUILT_PC}/$patch ; find -type f !
-name .timestamp`);
+ @files = split(/\n/, `cd $ENV{QUILT_PC}/$patch ; find . -type f
!
-name .timestamp`);
@files = map { s:\./::; $_ } @files;
}
push @nodes, {number=>$n++, name=>$patch, file=>$patch,
--
John
- Re: [Quilt-dev] [patch 1/8], (continued)
- Re: [Quilt-dev] [patch 1/8], John Vandenberg, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], Gary V. Vaughan, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], Andreas Gruenbacher, 2005/09/14
- Re: [Quilt-dev] quilt mail bugs (was [patch 1/8]), Gary V. Vaughan, 2005/09/14
- Re: [Quilt-dev] quilt mail bugs (was [patch 1/8]), Andreas Gruenbacher, 2005/09/14
- Re: [Quilt-dev] quilt mail bugs (was [patch 1/8]), Gary V. Vaughan, 2005/09/15
- Re: [Quilt-dev] [patch 1/8], Jean Delvare, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], Andreas Gruenbacher, 2005/09/14
- Re: [Quilt-dev] [patch 1/8], Jean Delvare, 2005/09/14
[Quilt-dev] [patch 4/8], gary, 2005/09/13
- Re: [Quilt-dev] [patch 4/8],
John Vandenberg <=