diff options
author | abs <abs@pkgsrc.org> | 2000-08-15 14:43:41 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2000-08-15 14:43:41 +0000 |
commit | abe53649a8e74faf8318ae965a9ab051d3d5de86 (patch) | |
tree | 391869977ec9b501ae12201b454119dba93e80a2 /pkgtools | |
parent | 2cbe4710e7e2b83803292a682a7a7d5578a7de4b (diff) | |
download | pkgsrc-abe53649a8e74faf8318ae965a9ab051d3d5de86.tar.gz |
Sort the list of files for which to generate patches in mkpatches
Update to 0.93
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkgdiff/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkgdiff/files/mkpatches.pl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkgdiff/Makefile b/pkgtools/pkgdiff/Makefile index cc2e1340945..a32e555bde5 100644 --- a/pkgtools/pkgdiff/Makefile +++ b/pkgtools/pkgdiff/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2000/08/15 14:35:22 abs Exp $ +# $NetBSD: Makefile,v 1.4 2000/08/15 14:43:41 abs Exp $ # -DISTNAME= pkgdiff-0.92 +DISTNAME= pkgdiff-0.93 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkgdiff/files/mkpatches.pl b/pkgtools/pkgdiff/files/mkpatches.pl index 7c8e2a90629..82aae5a43f5 100755 --- a/pkgtools/pkgdiff/files/mkpatches.pl +++ b/pkgtools/pkgdiff/files/mkpatches.pl @@ -1,6 +1,6 @@ #!@PREFIX@/bin/perl # -# $NetBSD: mkpatches.pl,v 1.2 2000/07/01 02:38:56 wiz Exp $ +# $NetBSD: mkpatches.pl,v 1.3 2000/08/15 14:43:42 abs Exp $ # # mkpatches: creates a set of patches patch-aa, patch-ab, ... # in work/.newpatches by looking for *.orig files in and below @@ -77,7 +77,7 @@ open(handle, "find . -type f -name \\\*.orig |"); # create patches -while(<handle>) { +foreach (sort <handle>) { my $path, $complete; chomp(); $path = $_; |