mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
7382cc71e6
parts of the library we have omitted. storage/bdb/dist/s_config: Change mode to -rw-r--r-- storage/bdb/dist/s_crypto: Change mode to -rw-r--r-- storage/bdb/dist/s_dir: Change mode to -rw-r--r-- storage/bdb/dist/s_include: Change mode to -rw-r--r-- storage/bdb/dist/s_java_const: Change mode to -rw-r--r-- storage/bdb/dist/s_java_stat: Change mode to -rw-r--r-- storage/bdb/dist/s_java_swig: Change mode to -rw-r--r-- storage/bdb/dist/s_javah: Change mode to -rw-r--r-- storage/bdb/dist/s_java: Change mode to -rw-r--r-- storage/bdb/dist/s_je2db: Change mode to -rw-r--r-- storage/bdb/dist/s_readme: Change mode to -rw-r--r-- storage/bdb/dist/s_rpc: Change mode to -rw-r--r-- storage/bdb/dist/s_test: Change mode to -rw-r--r-- storage/bdb/dist/s_vxworks: Change mode to -rw-r--r-- storage/bdb/dist/s_win32_dsp: Change mode to -rw-r--r-- storage/bdb/dist/s_win32: Change mode to -rw-r--r-- storage/bdb/dist/s_winmsi: Change mode to -rw-r--r-- storage/bdb/dist/s_all: Don't bother with VxWorks or Java stuff storage/bdb/dist/s_perm: Skip mod_db4 handling storage/bdb/dist/s_recover: Skip examples handling storage/bdb/dist/s_symlink: Skip examples handling storage/bdb/dist/s_tags: Skip test_perf handling BitKeeper/deleted/.del-build_all.dsp~8d55522d9eb8f029: Delete: storage/bdb/build_win32/build_all.dsp BitKeeper/deleted/.del-db_java_xa.dsp~dffbaca42fa2dc81: Delete: storage/bdb/build_win32/db_java_xa.dsp BitKeeper/deleted/.del-db_lib.dsp~4cc7531e4cd72267: Delete: storage/bdb/build_win32/db_lib.dsp BitKeeper/etc/ignore: Simplify some storage/bdb ignore rules storage/bdb/build_win32/small_dsp.src: New BitKeeper file ``storage/bdb/build_win32/small_dsp.src'' storage/bdb/build_win64/app_dsp.src: New BitKeeper file ``storage/bdb/build_win64/app_dsp.src'' storage/bdb/build_win64/db_test.src: New BitKeeper file ``storage/bdb/build_win64/db_test.src'' storage/bdb/build_win64/dynamic_dsp.src: New BitKeeper file ``storage/bdb/build_win64/dynamic_dsp.src'' storage/bdb/build_win64/ex_repquote.src: New BitKeeper file ``storage/bdb/build_win64/ex_repquote.src'' storage/bdb/build_win64/java_dsp.src: New BitKeeper file ``storage/bdb/build_win64/java_dsp.src'' storage/bdb/build_win64/libdbrc.src: New BitKeeper file ``storage/bdb/build_win64/libdbrc.src'' storage/bdb/build_win64/small_dsp.src: New BitKeeper file ``storage/bdb/build_win64/small_dsp.src'' storage/bdb/build_win64/srcfile_dsp.src: New BitKeeper file ``storage/bdb/build_win64/srcfile_dsp.src'' storage/bdb/build_win64/static_dsp.src: New BitKeeper file ``storage/bdb/build_win64/static_dsp.src'' storage/bdb/build_win64/tcl_dsp.src: New BitKeeper file ``storage/bdb/build_win64/tcl_dsp.src''
51 lines
1 KiB
Bash
Executable file
51 lines
1 KiB
Bash
Executable file
#!/bin/sh -
|
|
# $Id: s_perm,v 1.31 2004/10/05 18:56:58 bostic Exp $
|
|
|
|
d=..
|
|
echo 'Updating Berkeley DB source tree permissions...'
|
|
|
|
run()
|
|
{
|
|
#echo " $1 ($2)"
|
|
if [ -f "$d/$1" ]; then
|
|
chmod "$2" "$d/$1"
|
|
else
|
|
echo "$d/$1: no such file or directory"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
run build_win32/include.tcl 664
|
|
run dist/config.guess 555
|
|
run dist/config.sub 555
|
|
run dist/configure 555
|
|
run dist/install-sh 555
|
|
run dist/s_all 555
|
|
run dist/s_config 555
|
|
run dist/s_crypto 555
|
|
run dist/s_include 555
|
|
run dist/s_java 555
|
|
run dist/s_java_const 555
|
|
run dist/s_java_stat 555
|
|
run dist/s_java_swig 555
|
|
run dist/s_perm 555
|
|
run dist/s_readme 555
|
|
run dist/s_recover 555
|
|
run dist/s_rpc 555
|
|
run dist/s_symlink 555
|
|
run dist/s_tags 555
|
|
run dist/s_test 555
|
|
run dist/s_vxworks 555
|
|
run dist/s_win32 555
|
|
run dist/s_win32_dsp 555
|
|
run dist/vx_buildcd 555
|
|
#run mod_db4/configure 555
|
|
|
|
run perl/BerkeleyDB/dbinfo 555
|
|
run perl/BerkeleyDB/mkpod 555
|
|
|
|
for i in `cd $d && find build_vxworks \
|
|
-name '*.wsp' -o -name '*.cdf' -o -name '*.wpj'`; do
|
|
#echo " $i (775)"
|
|
chmod 775 $d/$i
|
|
done
|