diff options
author | wiz <wiz> | 2000-06-22 00:13:41 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-06-22 00:13:41 +0000 |
commit | a46862c238f8bb6c2d385d5666f53da7b664f1d2 (patch) | |
tree | 31f77a2c617c605b4ee1a92405f2557a16d7ee69 /pkgtools | |
parent | be71ea2b307c2348c10fbf1e2f5ee02a10f39b2c (diff) | |
download | pkgsrc-a46862c238f8bb6c2d385d5666f53da7b664f1d2.tar.gz |
Create empty pkg/COMMENT and pkg/DESCR, so that `make install' doesn't
bomb out. (pkglint warns about empty files now, anyway.). Step to 1.12.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/url2pkg/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/url2pkg/files/url2pkg | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/pkgtools/url2pkg/Makefile b/pkgtools/url2pkg/Makefile index 5ee833db613..834c8cd45f9 100644 --- a/pkgtools/url2pkg/Makefile +++ b/pkgtools/url2pkg/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2000/06/22 00:03:36 hubertf Exp $ +# $NetBSD: Makefile,v 1.8 2000/06/22 00:13:41 wiz Exp $ # -DISTNAME= url2pkg-1.11 +DISTNAME= url2pkg-1.12 CATEGORIES= pkgtools sysutils MASTER_SITES= # Nothing DISTFILES= # Nothing diff --git a/pkgtools/url2pkg/files/url2pkg b/pkgtools/url2pkg/files/url2pkg index 5126d2b48db..f5552776131 100755 --- a/pkgtools/url2pkg/files/url2pkg +++ b/pkgtools/url2pkg/files/url2pkg @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: url2pkg,v 1.11 2000/06/21 22:43:17 hubertf Exp $ +# $NetBSD: url2pkg,v 1.12 2000/06/22 00:13:41 wiz Exp $ # # url2pkg # (c) 1999 Hubert Feyrer @@ -133,6 +133,12 @@ echo "" echo "Contents of "`echo w*`"/${wrksrc}:" ls -la w*/$wrksrc +if [ ! -f pkg/COMMENT ]; then + touch pkg/COMMENT +fi +if [ ! -f pkg/DESCR ]; then + touch pkg/DESCR +fi echo "" echo "Don't forget to fill in pkg/COMMENT and pkg/DESCR when you're done." echo "" |