Commit e894a736 authored by ram@mysql.r18.ru's avatar ram@mysql.r18.ru

fix for BDB

parent c0764205
...@@ -16,7 +16,7 @@ DB_VERSION_STRING="Sleepycat Software: Berkeley DB $DB_VERSION: ($DB_RELEASE_DAT ...@@ -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! # bitkeeper doesn't like somebody to mess with permissions!
chmod() chmod()
{ {
#echo "chmod $1 $2" echo "chmod $1 $2" >/dev/null
} }
# useful trick to find auto-generated files # useful trick to find auto-generated files
......
#!/bin/sh - #!/bin/sh -
# $Id: s_all,v 1.10 2001/08/04 14:01:44 bostic Exp $ # $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_symlink # symbolic links.
sh s_readme # db/README file. sh s_readme # db/README file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment