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.
This commit is contained in:
wiz 2000-06-22 00:13:41 +00:00
parent c3cd51a21e
commit 062e544125
2 changed files with 9 additions and 3 deletions

View file

@ -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

View file

@ -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 ""