build.patch

liveriondev, 05/08/2010 02:41 pm

Download (1 kB)

b/code/ryzom/tools/scripts/linux/build Sat May 08 14:34:51 2010 +0200
49 49

50 50
# Set the source directory. Use the environment SRC_DIR variable, if it's
51 51
# not set, use $HOME/cvs as a default value
52
SRC_DIR="$HOME/code"
52
if test X"$RYZOM_PATH" = "X"
53
then
54
    RYZOM_PATH="$HOME/code"
55
fi
56
SRC_DIR="$RYZOM_PATH/../../code"
53 57

54 58
# Build diretories
55 59
BUILD_DEBUG="$SRC_DIR/build/debug"
......
74 78
###########################################################################
75 79

76 80
# Flag files associated to each mode
77
DEBUG_FILE="$HOME/.mode_debug"
78
STATIC_FILE="$HOME/.mode_static"
79
DYNAMIC_FILE="$HOME/.mode_dynamic"
80
SILENT_FILE="$HOME/.mode_silent"
81
DEBUG_FILE="$RYZOM_PATH/.mode_debug"
82
STATIC_FILE="$RYZOM_PATH/.mode_static"
83
DYNAMIC_FILE="$RYZOM_PATH/.mode_dynamic"
84
SILENT_FILE="$RYZOM_PATH/.mode_silent"
81 85

82 86
# Specify the source code directory of each projects
83 87
NEL_SRC="$SRC_DIR/nel"