diff options
author | lukem <lukem> | 2002-06-21 12:26:31 +0000 |
---|---|---|
committer | lukem <lukem> | 2002-06-21 12:26:31 +0000 |
commit | c1bafd2adbf8fb3088d4b563b98709d4c483d97f (patch) | |
tree | ff9f09c57f58524bc0ee95597b23a1e95ef713f6 /devel/id-utils/Makefile | |
parent | a42a6fbf4f791b490d2733389ba5109ff42aa9ba (diff) | |
download | pkgsrc-c1bafd2adbf8fb3088d4b563b98709d4c483d97f.tar.gz |
+ In assert_writeable(), don't depend upon dirname(3) not modifying the
argument; POSIX allows this, even though the replacement lib/dirname.c
(from glibc?) returns a strndup-ed strings *except* for the "." case.
[mmm, possible memory leaks]. Instead, just implement most of guts of
lib/dirname.c directly in assert_writeable(), always copy string, and
always free it. This fixes ``mkid -f /some/path/to/id''
+ Crank PKGREVISION.
Diffstat (limited to 'devel/id-utils/Makefile')
-rw-r--r-- | devel/id-utils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/id-utils/Makefile b/devel/id-utils/Makefile index 344dd6f0dad..964430c0c1c 100644 --- a/devel/id-utils/Makefile +++ b/devel/id-utils/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.24 2002/03/01 01:51:53 wiz Exp $ +# $NetBSD: Makefile,v 1.25 2002/06/21 12:26:31 lukem Exp $ # FreeBSD Id: Makefile,v 1.4 1996/11/18 10:22:47 asami Exp # DISTNAME= id-utils-3.2 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=id-utils/} |