diff options
author | tron <tron> | 2002-03-15 07:16:23 +0000 |
---|---|---|
committer | tron <tron> | 2002-03-15 07:16:23 +0000 |
commit | 1fab6f08b978bbc44cc8a9bf5baf583e73f0f5a0 (patch) | |
tree | ee5d3c0d6beddf38e0d010671ee428a7648ddcd8 | |
parent | 9311c6761385cebe0292bc576e37544c86cc703a (diff) | |
download | pkgsrc-1fab6f08b978bbc44cc8a9bf5baf583e73f0f5a0.tar.gz |
Partitally backout revision 1.932:
We *must* record the version of "${.CURDIR}/Makefile" because we otherwise
only record the version of the wrong "Makefile" e.g.
"x11/xscreensaver-gnome/../xscreensaver/Makefile" for the
"xscreensaver-gnome" package. This will break the update target horribly.
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 309dde3c2f7..306f5fbafb0 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.947 2002/03/14 02:28:22 lukem Exp $ +# $NetBSD: bsd.pkg.mk,v 1.948 2002/03/15 07:16:23 tron Exp $ # # This file is in the public domain. # @@ -3673,7 +3673,7 @@ fake-pkg: ${PLIST} ${DESCR} ${MESSAGE} ${_PKG_SILENT}${_PKG_DEBUG}${RM} -f ${SIZE_PKG_FILE} ${SIZE_ALL_FILE} ${_PKG_SILENT}${_PKG_DEBUG} \ files=""; \ - for f in ${FILESDIR}/* ${PKGDIR}/*; do \ + for f in ${.CURDIR}/Makefile ${FILESDIR}/* ${PKGDIR}/*; do \ if [ -f "$$f" ]; then \ files="$$files \"$$f\""; \ fi; \ |