diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-10-02 07:18:17 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-10-02 07:18:17 +0000 |
commit | d89d789ea886d6de471dbfecf9860ee22863c2d5 (patch) | |
tree | bbe45e460f2d3c9f3e2efb68abc5c6a15e9e0981 /Mk | |
parent | Switch back to .tgz packages for 'parallel' target. (diff) |
Fix installation of +MTREE_DIRS introduced in r1.424
Submitted by: sobomax
Notes
Notes:
svn path=/head/; revision=67291
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 6cc856b5b722..9b03bfcd2a79 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3461,10 +3461,8 @@ fake-pkg: done; \ fi .if !defined(NO_MTREE) - @if [ ! -d ${PKG_DBDIR}/${PKGNAME} ]; then \ - if [ -f ${MTREE_FILE} ]; then \ - ${CP} ${MTREE_FILE} ${PKG_DBDIR}/${PKGNAME}/+MTREE_DIRS; \ - fi; \ + @if [ -f ${MTREE_FILE} ]; then \ + ${CP} ${MTREE_FILE} ${PKG_DBDIR}/${PKGNAME}/+MTREE_DIRS; \ fi .endif @if [ -e /tmp/${PKGNAME}-required-by ]; then \ |