diff options
author | hubertf <hubertf@pkgsrc.org> | 2002-08-11 01:00:59 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2002-08-11 01:00:59 +0000 |
commit | e95491ddb001bded84c8650b651bc3c89f3a7543 (patch) | |
tree | e01c44bb971582c7afd5524ea5727dd1a8d8b54f | |
parent | be47ce1e191cf6477457a249fc0f8caadcc13fd5 (diff) | |
download | pkgsrc-e95491ddb001bded84c8650b651bc3c89f3a7543.tar.gz |
pkg_tarup relies on a RCS ID to be present in a PLIST to find out what's
part of the pkg's PLIST and what was added by pkg_create (and can be ignored).
Add an empty PLIST with an RCS ID to _all_ suse_* pkgs.
Addresses PR pkg/17895 by David Maxwell <david@netbsd.org>
-rw-r--r-- | emulators/suse_linux/Makefile.common | 3 | ||||
-rw-r--r-- | emulators/suse_linux/PLIST_dynamic | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/emulators/suse_linux/Makefile.common b/emulators/suse_linux/Makefile.common index 46a12da876c..54533e5bda1 100644 --- a/emulators/suse_linux/Makefile.common +++ b/emulators/suse_linux/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2002/04/19 13:47:09 wiz Exp $ +# $NetBSD: Makefile.common,v 1.11 2002/08/11 01:00:59 hubertf Exp $ SUSE_VERSION= 7.3 @@ -41,6 +41,7 @@ do-install: ${CP} ${PKGDIR}/PLIST ${PLIST_SRC}; \ else \ ${RM} -f ${PLIST_SRC}; \ + ${CP} ${_PKGSRCDIR}/emulators/suse_linux/PLIST_dynamic ${PLIST_SRC} ; \ fi ${RPM2PKG} ${RPM2PKGARGS} @if ${GREP} -q 'lib.*\.so' ${PLIST_SRC}; then \ diff --git a/emulators/suse_linux/PLIST_dynamic b/emulators/suse_linux/PLIST_dynamic new file mode 100644 index 00000000000..6b4bb927127 --- /dev/null +++ b/emulators/suse_linux/PLIST_dynamic @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST_dynamic,v 1.1 2002/08/11 01:00:59 hubertf Exp $ +@comment PLIST created dynamically from pkgsrc/emulators/suse_linux/Makefile.common |