pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk/bulk add archivers/pax, net/tnftp, security/kth-krb...
details: https://anonhg.NetBSD.org/pkgsrc/rev/e0796175af24
branches: trunk
changeset: 466541:e0796175af24
user: grant <grant%pkgsrc.org@localhost>
date: Tue Jan 20 12:44:30 2004 +0000
description:
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:
mk/bulk/pre-build | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diffs (36 lines):
diff -r 7a235b221eac -r e0796175af24 mk/bulk/pre-build
--- a/mk/bulk/pre-build Tue Jan 20 12:43:03 2004 +0000
+++ b/mk/bulk/pre-build Tue Jan 20 12:44:30 2004 +0000
@@ -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 @@
# 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
-
Home |
Main Index |
Thread Index |
Old Index