diff options
author | tron <tron@pkgsrc.org> | 2002-03-15 07:16:23 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-03-15 07:16:23 +0000 |
commit | 58c0212d2fb55d33d1e843cee7f950df0b99995a (patch) | |
tree | ee5d3c0d6beddf38e0d010671ee428a7648ddcd8 /mk | |
parent | 500e297d793517083f0605ba279ceecfbf974ef7 (diff) | |
download | pkgsrc-58c0212d2fb55d33d1e843cee7f950df0b99995a.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.
Diffstat (limited to 'mk')
-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; \ |