From 4167adf22df980a751b7ea4a15fcbd3aa286c967 Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 4 Nov 2002 23:07:37 +0000 Subject: Update to 0.107: Do not exit when pkgdiff fails on one file, just report an error. --- pkgtools/pkgdiff/Makefile | 4 ++-- pkgtools/pkgdiff/files/mkpatches.pl | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) (limited to 'pkgtools') diff --git a/pkgtools/pkgdiff/Makefile b/pkgtools/pkgdiff/Makefile index a512cc259f5..96601c40e3e 100644 --- a/pkgtools/pkgdiff/Makefile +++ b/pkgtools/pkgdiff/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.28 2002/08/25 19:43:33 jlam Exp $ +# $NetBSD: Makefile,v 1.29 2002/11/04 23:07:37 wiz Exp $ # -DISTNAME= pkgdiff-0.106 +DISTNAME= pkgdiff-0.107 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkgdiff/files/mkpatches.pl b/pkgtools/pkgdiff/files/mkpatches.pl index d56025c863f..400ccf2491e 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.7 2002/07/21 16:34:10 wiz Exp $ +# $NetBSD: mkpatches.pl,v 1.8 2002/11/04 23:07:37 wiz Exp $ # # mkpatches: creates a set of patches patch-aa, patch-ab, ... # in work/.newpatches by looking for *.orig files in and below @@ -93,8 +93,7 @@ foreach (sort ) { } $diff=`pkgdiff $old $new`; if ( $? ) { - print "$old\n$diff\n"; - exit 1; + print "$old: $diff"; } if ( "$diff" eq "" ) { print ("$new and $old don't differ\n"); -- cgit v1.2.3