summaryrefslogtreecommitdiff
path: root/bdb
diff options
context:
space:
mode:
authorram@mysql.r18.ru <>2002-11-19 16:02:19 +0400
committerram@mysql.r18.ru <>2002-11-19 16:02:19 +0400
commite894a736aa267a734843de206066054e2ef38c4c (patch)
treebb422a55d7dc4adbb0650657b4f45c0380a0ac63 /bdb
parentc0764205cfc530c7880a07291ac47a11a4f43de6 (diff)
downloadmariadb-git-e894a736aa267a734843de206066054e2ef38c4c.tar.gz
fix for BDB
Diffstat (limited to 'bdb')
-rw-r--r--bdb/dist/RELEASE2
-rw-r--r--bdb/dist/s_all17
2 files changed, 17 insertions, 2 deletions
diff --git a/bdb/dist/RELEASE b/bdb/dist/RELEASE
index 20b648efa04..61151b8589c 100644
--- a/bdb/dist/RELEASE
+++ b/bdb/dist/RELEASE
@@ -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
diff --git a/bdb/dist/s_all b/bdb/dist/s_all
index c0e3ac72f3a..51c9afabcae 100644
--- a/bdb/dist/s_all
+++ b/bdb/dist/s_all
@@ -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.