fix for BDB

This commit is contained in:
unknown 2002-11-19 16:02:19 +04:00
parent 0fb3b8d9ab
commit 56b6433e66
2 changed files with 17 additions and 2 deletions

2
bdb/dist/RELEASE vendored
View file

@ -16,7 +16,7 @@ DB_VERSION_STRING="Sleepycat Software: Berkeley DB $DB_VERSION: ($DB_RELEASE_DAT
# bitkeeper doesn't like somebody to mess with permissions!
chmod()
{
#echo "chmod $1 $2"
echo "chmod $1 $2" >/dev/null
}
# useful trick to find auto-generated files

17
bdb/dist/s_all vendored
View file

@ -1,7 +1,22 @@
#!/bin/sh -
# $Id: s_all,v 1.10 2001/08/04 14:01:44 bostic Exp $
sh s_perm # permissions.
make_dir()
{
if test ! -d $1; then
echo "mkdir $1"
mkdir $1
status=$?
if test $status -ne 0 && test ! -d $1; then
echo "error: $status"
fi
fi
}
make_dir ../test_server
make_dir ../dbinc_auto
#sh s_perm # permissions.
sh s_symlink # symbolic links.
sh s_readme # db/README file.