summaryrefslogtreecommitdiff
path: root/lib/libc/db/db2netbsd
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/db/db2netbsd')
-rw-r--r--lib/libc/db/db2netbsd31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/libc/db/db2netbsd b/lib/libc/db/db2netbsd
deleted file mode 100644
index e34ad26594c..00000000000
--- a/lib/libc/db/db2netbsd
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-# $OpenBSD: db2netbsd,v 1.2 1996/08/19 08:19:58 tholo Exp $
-
-# This version transforms a Berkeley DB distribution into something
-# which can be 'cvs import'ed into the NetBSD source repository.
-# It is to be run in the untarred Berkeley DB distribution directory
-# (e.g. the "db.1.85" directory created by tar xvf), and sets up
-# the destination tree in place.
-
-version=`basename $PWD | sed -e 's/db\.//'`
-releasetag=`basename $PWD | sed -e 's/\./-/g'`
-
-CLEANFILES="PORT docs test/btree.tests test/hash.tests"
-
-# clean up pieces that we never import
-/bin/rm -rf $CLEANFILES
-find . -type l -o -name tags | xargs /bin/rm -f
-
-# The include files are already in place
-
-# Put the regression tests in the right place
-mkdir -p regress/lib/libc
-mv test regress/lib/libc/db
-
-# Put the libc pieces in the right place.
-mkdir -p lib/libc/db
-mv Makefile.inc README btree changelog db hash man mpool recno lib/libc/db
-
-echo "import with:"
-echo "cvs import -m \"Import of Berkeley DB version $version\" \
-src CSRG $releasetag"