diff options
author | serg@serg.mysql.com <> | 2002-11-22 15:22:22 +0100 |
---|---|---|
committer | serg@serg.mysql.com <> | 2002-11-22 15:22:22 +0100 |
commit | 9f04cfa8e967fc43418dcbf1b7e732354ddec482 (patch) | |
tree | e41cd16800b8902cdf1801b898f2ad33751876b6 /bdb/dist | |
parent | b201dfece4bd130df51d9c25209f579079004c14 (diff) | |
download | mariadb-git-9f04cfa8e967fc43418dcbf1b7e732354ddec482.tar.gz |
autogenerated files removed
scripts we don't need commented out
s_dir script for creating directories bdb build process requires
Diffstat (limited to 'bdb/dist')
-rw-r--r-- | bdb/dist/s_all | 23 | ||||
-rw-r--r-- | bdb/dist/s_dir | 42 |
2 files changed, 47 insertions, 18 deletions
diff --git a/bdb/dist/s_all b/bdb/dist/s_all index 51c9afabcae..65a19f271e7 100644 --- a/bdb/dist/s_all +++ b/bdb/dist/s_all @@ -1,20 +1,7 @@ #!/bin/sh - # $Id: s_all,v 1.10 2001/08/04 14:01:44 bostic Exp $ -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_dir #sh s_perm # permissions. sh s_symlink # symbolic links. @@ -30,7 +17,7 @@ sh s_include # standard include files. sh s_win32 # Win32 include files. sh s_win32_dsp # Win32 build environment. -sh s_vxworks # VxWorks include files. -sh s_java # Java support. -sh s_test # Test suite support. -sh s_tags # Tags files. +#sh s_vxworks # VxWorks include files. +#sh s_java # Java support. +#sh s_test # Test suite support. +#sh s_tags # Tags files. diff --git a/bdb/dist/s_dir b/bdb/dist/s_dir new file mode 100644 index 00000000000..58513a8321d --- /dev/null +++ b/bdb/dist/s_dir @@ -0,0 +1,42 @@ +#!/bin/sh - + +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 +} + +echo "Creating directories..." + +make_dir ../test_server +make_dir ../dbinc_auto +make_dir ../build_vxworks/BerkeleyDB +make_dir ../build_vxworks/db_archive +make_dir ../build_vxworks/db_archive/db_archive +make_dir ../build_vxworks/db_checkpoint +make_dir ../build_vxworks/db_checkpoint/db_checkpoint +make_dir ../build_vxworks/db_deadlock +make_dir ../build_vxworks/db_deadlock/db_deadlock +make_dir ../build_vxworks/db_dump +make_dir ../build_vxworks/db_dump/db_dump +make_dir ../build_vxworks/db_load +make_dir ../build_vxworks/db_load/db_load +make_dir ../build_vxworks/db_printlog +make_dir ../build_vxworks/db_printlog/db_printlog +make_dir ../build_vxworks/db_recover +make_dir ../build_vxworks/db_recover/db_recover +make_dir ../build_vxworks/db_stat +make_dir ../build_vxworks/db_stat/db_stat +make_dir ../build_vxworks/db_upgrade +make_dir ../build_vxworks/db_upgrade/db_upgrade +make_dir ../build_vxworks/db_verify +make_dir ../build_vxworks/db_verify/db_verify +make_dir ../build_vxworks/dbdemo/dbdemo +make_dir ../dbinc_auto + |