mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
2d14fa5b39
delete auto-generated files remove in-place editing BitKeeper/deleted/.del-ex_apprec_auto.c~6e4c8882b1f0fe9d: Delete: bdb/examples_c/ex_apprec/ex_apprec_auto.c BitKeeper/deleted/.del-ex_apprec_auto.h~d01f1e472bf1b59f: Delete: bdb/examples_c/ex_apprec/ex_apprec_auto.h BitKeeper/deleted/.del-ex_apprec_template~4157a705d73c1209: Delete: bdb/examples_c/ex_apprec/ex_apprec_template bdb/rpc_server/c/db_server_proc.c.in: Rename: bdb/rpc_server/c/db_server_proc.c -> bdb/rpc_server/c/db_server_proc.c.in BitKeeper/deleted/.del-rpc_defs.in~bfc9820a618d5926: Delete: bdb/dbinc_auto/rpc_defs.in BitKeeper/deleted/.del-db_server.h~1c77cc0d19f3ecf: Delete: bdb/dbinc_auto/db_server.h BitKeeper/deleted/.del-db_server_proc.sed~94a351b3e31c0ad0: Delete: bdb/rpc_server/c/db_server_proc.sed BitKeeper/deleted/.del-db_server_svc.c~66ae3c56737e07ab: Delete: bdb/rpc_server/c/db_server_svc.c BitKeeper/deleted/.del-db_server_xdr.c~518231ed78b9cdcf: Delete: bdb/rpc_server/c/db_server_xdr.c BitKeeper/deleted/.del-gen_db_server.c~51935e227c7c23ac: Delete: bdb/rpc_server/c/gen_db_server.c bdb/dist/RELEASE: disable chmod in bdb scripts - bk doesn't like somebody messing with permissions bdb/dist/s_crypto: disable chmod in bdb scripts - bk doesn't like somebody messing with permissions bdb/dist/s_perm: disable chmod in bdb scripts - bk doesn't like somebody messing with permissions bdb/dist/s_recover: disable chmod in bdb scripts - bk doesn't like somebody messing with permissions bdb/dist/s_rpc: NEVER modify files in-place!!! bdb/dist/s_symlink: disable chmod in bdb scripts - bk doesn't like somebody messing with permissions bdb/dist/s_tags: disable chmod in bdb scripts - bk doesn't like somebody messing with permissions
59 lines
1.7 KiB
Bash
Executable file
59 lines
1.7 KiB
Bash
Executable file
#!/bin/sh -
|
|
# $Id: s_symlink,v 1.28 2002/08/18 21:15:45 bostic Exp $
|
|
|
|
echo 'Creating Berkeley DB source tree symbolic links...'
|
|
. ./RELEASE
|
|
|
|
build()
|
|
{
|
|
echo " $1 -> $2"
|
|
(cd ../`dirname $1` && rm -f `basename $1` && ln -s $2 `basename $1`)
|
|
}
|
|
|
|
build btree/tags ../dist/tags
|
|
build build_unix/tags ../dist/tags
|
|
build clib/tags ../dist/tags
|
|
build common/tags ../dist/tags
|
|
build crypto/tags ../dist/tags
|
|
build cxx/tags ../dist/tags
|
|
build db/tags ../dist/tags
|
|
build db185/tags ../dist/tags
|
|
build db_archive/tags ../dist/tags
|
|
build db_checkpoint/tags ../dist/tags
|
|
build db_deadlock/tags ../dist/tags
|
|
build db_dump/tags ../dist/tags
|
|
build db_dump185/tags ../dist/tags
|
|
build db_load/tags ../dist/tags
|
|
build db_printlog/tags ../dist/tags
|
|
build db_recover/tags ../dist/tags
|
|
build db_stat/tags ../dist/tags
|
|
build db_upgrade/tags ../dist/tags
|
|
build db_verify/tags ../dist/tags
|
|
build dbinc/tags ../dist/tags
|
|
build dbinc_auto/tags ../dist/tags
|
|
build dbm/tags ../dist/tags
|
|
build dbreg/tags ../dist/tags
|
|
build env/tags ../dist/tags
|
|
build examples_c/tags ../dist/tags
|
|
build examples_cxx/tags ../dist/tags
|
|
build examples_java java/src/com/sleepycat/examples
|
|
build fileops/tags ../dist/tags
|
|
build hash/tags ../dist/tags
|
|
build hmac/tags ../dist/tags
|
|
build hsearch/tags ../dist/tags
|
|
build libdb_java/tags ../dist/tags
|
|
build lock/tags ../dist/tags
|
|
build log/tags ../dist/tags
|
|
build mp/tags ../dist/tags
|
|
build mutex/tags ../dist/tags
|
|
build os/tags ../dist/tags
|
|
build os_vxworks/tags ../dist/tags
|
|
build os_win32/tags ../dist/tags
|
|
build qam/tags ../dist/tags
|
|
build rep/tags ../dist/tags
|
|
build rpc_client/tags ../dist/tags
|
|
build rpc_server/tags ../dist/tags
|
|
build tcl/tags ../dist/tags
|
|
build test_server/tags ../dist/tags
|
|
build txn/tags ../dist/tags
|
|
build xa/tags ../dist/tags
|