diff options
author | grant <grant> | 2004-01-20 12:44:30 +0000 |
---|---|---|
committer | grant <grant> | 2004-01-20 12:44:30 +0000 |
commit | fc2ce0af9edb009bb9a94ba3ac4f6e4f69ab51fb (patch) | |
tree | b011617f6119d606a4bf5b3cb9e6ef40500e6a06 /mk | |
parent | 54c3cef4aa8ab0db45f8073ec85a7b8f2081ab2d (diff) | |
download | pkgsrc-fc2ce0af9edb009bb9a94ba3ac4f6e4f69ab51fb.tar.gz |
add archivers/pax, net/tnftp, security/kth-krb4 and textproc/nbsed to
the packages to skip on non-NetBSD because they blow away
bootstrap-pkgsrc installed files.
only create ${PKG_DBDIR} if it doesn't already exist.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/pre-build | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/mk/bulk/pre-build b/mk/bulk/pre-build index 677f9ccf7d4..0a8d39bc053 100644 --- a/mk/bulk/pre-build +++ b/mk/bulk/pre-build @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: pre-build,v 1.34 2004/01/15 09:57:50 grant Exp $ +# $NetBSD: pre-build,v 1.35 2004/01/20 12:44:30 grant Exp $ # # Clean up system to be ready for bulk pkg build # @@ -210,17 +210,19 @@ esac # bootstrap-pkgsrc generated files and thus would break the following builds. if [ x"$BMAKE" = x"bmake" ]; then - echo "Don't blow away bootstrap-pkgsrc stuff!" > \ - devel/bmake/${BROKENF} - echo "Don't blow away bootstrap-pkgsrc stuff!" > \ - devel/mk-files/${BROKENF} + for pkg in archivers/pax devel/bmake devel/mk-files net/tnftp \ + security/kth-krb4 textproc/nbsed; do + echo "Don't blow away bootstrap-pkgsrc stuff!" > \ + ${pkg}/${BROKENF} + done fi if [ -f mk/bulk/pre-build.local ]; then . mk/bulk/pre-build.local fi -mkdir ${PKG_DBDIR} +if [ ! -d ${PKG_DBDIR} ]; then + mkdir ${PKG_DBDIR} +fi touch $STARTFILE - |