Sort the list of files for which to generate patches in mkpatches
Update to 0.93
This commit is contained in:
parent
2cbe4710e7
commit
abe53649a8
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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 = $_;
|
||||
|
|
Loading…
Reference in a new issue