summaryrefslogtreecommitdiffstats
path: root/scripts/dependency-graph.in
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-09-15 18:02:40 +0000
committerJean Delvare <khali@linux-fr.org>2005-09-15 18:02:40 +0000
commit2eed6a6601f65e86980aa007cdda08021c42d278 (patch)
tree8e3416cd614997739af6058a7e0434d6d43275f8 /scripts/dependency-graph.in
parent836447cea8f4ab389092ce8d6c6eaf265afd3adb (diff)
downloadquilt-2eed6a6601f65e86980aa007cdda08021c42d278.tar.gz
- Omitting the search directory in "find" is not portable; add an explicit
"." (Gary V. Vaughan, John Vandenberg).
Diffstat (limited to 'scripts/dependency-graph.in')
-rw-r--r--scripts/dependency-graph.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dependency-graph.in b/scripts/dependency-graph.in
index 3e9091d..a853c10 100644
--- a/scripts/dependency-graph.in
+++ b/scripts/dependency-graph.in
@@ -241,7 +241,7 @@ foreach my $patch (@patches) {
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,