Update to version 0.108.
Newer diffutils' (>=2.8, as seen in pkgsrc and -current) diff had seen the regexp syntax of its -I and -F options changed from Emacs syntax to grep syntax. Hence fix pkgdiff's diff invocation so diffs on configure scripts are kept to a minimum.
This commit is contained in:
parent
3437eb515c
commit
fdfeafd02f
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.32 2003/03/29 12:42:11 jmmv Exp $
|
||||
# $NetBSD: Makefile,v 1.33 2003/04/09 15:01:18 seb Exp $
|
||||
#
|
||||
|
||||
DISTNAME= pkgdiff-0.107
|
||||
DISTNAME= pkgdiff-0.108
|
||||
WRKSRC= ${WRKDIR}
|
||||
CATEGORIES= pkgtools devel
|
||||
MASTER_SITES= # empty
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: pkgdiff,v 1.9 2002/12/30 18:27:54 sommerfeld Exp $
|
||||
# $NetBSD: pkgdiff,v 1.10 2003/04/09 15:01:18 seb Exp $
|
||||
#
|
||||
# Usage: pkgdiff newfile
|
||||
# pkgdiff oldfile newfile
|
||||
|
@ -30,7 +30,7 @@ fi
|
|||
dodiff() {
|
||||
case x"`basename $new`" in
|
||||
xconfigure)
|
||||
@DIFF@ -I '\(echo .*as_me:[0-9]+:\|echo .*configure:[0-9]+:\|line [0-9]+ \"configure\)' $*
|
||||
@DIFF@ -I '\(echo .*as_me:[0-9][0-9]*:\|echo .*configure:[0-9][0-9]*:\|line [0-9][0-9]* "configure\)' $*
|
||||
;;
|
||||
*)
|
||||
@DIFF@ $*
|
||||
|
|
Loading…
Reference in a new issue