Make patchdiff following package's PATCHDIR setting: useful when dealing with

packages sharing patch files directory.
Increment the package version.

Approved by wiz.
This commit is contained in:
seb 2002-08-14 16:30:06 +00:00
parent 98bac6da2a
commit d0fa9b21db
2 changed files with 6 additions and 4 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.24 2002/04/02 10:56:47 seb Exp $
# $NetBSD: Makefile,v 1.25 2002/08/14 16:30:06 seb Exp $
#
DISTNAME= pkgdiff-0.105
DISTNAME= pkgdiff-0.106
CATEGORIES= pkgtools devel
MASTER_SITES= # empty
DISTFILES= # empty

View file

@ -1,6 +1,6 @@
#!@PREFIX@/bin/perl
#
# $NetBSD: patchdiff.pl,v 1.4 2001/09/14 22:40:57 wiz Exp $
# $NetBSD: patchdiff.pl,v 1.5 2002/08/14 16:30:07 seb Exp $
#
# patchdiff: compares a set of patches patch-aa, patch-ab, ... in
# $WRKDIR/.newpatches in the with another set in patches.
@ -63,7 +63,9 @@ EOF
%new=();
$thisdir=cwd();
chomp($thisdir);
$oldpatchdir=$thisdir."/patches";
$oldpatchdir=`@MAKE@ show-var VARNAME=PATCHDIR` or
die ("can't find PATCHDIR -- wrong dir?");
chomp($oldpatchdir);
$wrkdir=`@MAKE@ show-var VARNAME=WRKDIR` or
die ("can't find WRKDIR -- wrong dir?");