diff options
author | tron <tron@pkgsrc.org> | 2000-06-03 20:58:46 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2000-06-03 20:58:46 +0000 |
commit | 353ce3500a3e75b38bcc42001751d7e5978be32e (patch) | |
tree | f8ba6847470db543d51456bbfa7bb77ca8ef68f4 | |
parent | 80a9eeae03dcf904318545a96573811381097a4c (diff) | |
download | pkgsrc-353ce3500a3e75b38bcc42001751d7e5978be32e.tar.gz |
Remove links in "package-links" target before trying to create them to
avoid failure if they already exist. We cannot use "ln -f" here because
it doesn't work as expected under Solaris.
-rw-r--r-- | mk/bsd.pkg.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 65418d6027d..374c06427cf 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.467 2000/06/03 20:31:27 mycroft Exp $ +# $NetBSD: bsd.pkg.mk,v 1.468 2000/06/03 20:58:46 tron Exp $ # # This file is in the public domain. # @@ -1376,6 +1376,7 @@ package-links: exit 1; \ fi; \ fi; \ + ${RM} -f ${PACKAGES}/$$cat/${PKGNAME}${PKG_SUFX}; \ ${LN} -s ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PACKAGES}/$$cat; \ done; .endif |