|
bk commit into 4.0 tree (1.1474): msg#00352db.mysql.devel
Below is the list of changes that have just been committed into a local 4.0 repository of greg. When greg does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://www.mysql.com/doc/I/n/Installing_source_tree.html ChangeSet 1.1474 03/04/24 18:15:52 greg@xxxxxxxxx +14 -0 Minor changes in netware directory (From Rob Lyon - Novell) netware/BUILD/crontab 1.1 03/04/24 18:15:51 greg@xxxxxxxxx +4 -0 netware/BUILD/crontab 1.0 03/04/24 18:15:51 greg@xxxxxxxxx +0 -0 BitKeeper file /home/greg/bk/mysql-4.0/netware/BUILD/crontab netware/BUILD/cron-build 1.1 03/04/24 18:15:50 greg@xxxxxxxxx +46 -0 netware/BUILD/nwbootstrap 1.4 03/04/24 18:15:50 greg@xxxxxxxxx +10 -2 Add target path suffix netware/BUILD/mwldnlm 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +3 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/mwccnlm 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +3 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/mwasmnlm 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +3 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/cron-build 1.0 03/04/24 18:15:50 greg@xxxxxxxxx +0 -0 BitKeeper file /home/greg/bk/mysql-4.0/netware/BUILD/cron-build netware/BUILD/compile-netware-standard 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +7 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-debug 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +6 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-all 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +6 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-START 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +4 -1 Turned on error checking in all NetWare build scripts. netware/BUILD/compile-netware-END 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +6 -0 Turned on error checking in all NetWare build scripts. netware/BUILD/compile-linux-tools 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +4 -1 Turned on error checking in all NetWare build scripts. netware/BUILD/compile-AUTOTOOLS 1.3 03/04/24 18:15:50 greg@xxxxxxxxx +6 -0 Turned on error checking in all NetWare build scripts. netware/mysql.xdc 1.2 03/03/31 11:31:17 greg@xxxxxxxxx +0 -0 Change mode to -rw-rw-r-- # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: greg # Host: gcw.(none) # Root: /home/greg/bk/mysql-4.0 --- 1.2/netware/BUILD/compile-AUTOTOOLS Tue Mar 4 12:16:16 2003 +++ 1.3/netware/BUILD/compile-AUTOTOOLS Thu Apr 24 18:15:50 2003 @@ -1,5 +1,11 @@ #! /bin/sh +# debug +#set -x + +# stop on errors +set -e + for package in . ./innobase do (cd $package --- 1.2/netware/BUILD/compile-linux-tools Tue Mar 4 12:16:16 2003 +++ 1.3/netware/BUILD/compile-linux-tools Thu Apr 24 18:15:50 2003 @@ -1,7 +1,10 @@ #! /bin/sh -#debug +# debug #set -x + +# stop on errors +set -e if test ! -r ./sql/mysqld.cc then --- 1.2/netware/BUILD/compile-netware-END Tue Mar 4 12:16:16 2003 +++ 1.3/netware/BUILD/compile-netware-END Thu Apr 24 18:15:50 2003 @@ -1,5 +1,11 @@ #! /bin/sh +# debug +#set -x + +# stop on errors +set -e + path=`dirname $0` # clean --- 1.2/netware/BUILD/compile-netware-START Tue Mar 4 12:16:16 2003 +++ 1.3/netware/BUILD/compile-netware-START Thu Apr 24 18:15:50 2003 @@ -1,7 +1,10 @@ #! /bin/sh -#debug +# debug #set -x + +# stop on errors +set -e if test ! -r ./sql/mysqld.cc then --- 1.2/netware/BUILD/compile-netware-all Tue Mar 4 12:16:16 2003 +++ 1.3/netware/BUILD/compile-netware-all Thu Apr 24 18:15:50 2003 @@ -1,5 +1,11 @@ #! /bin/sh +# debug +#set -x + +# stop on errors +set -e + path=`dirname $0` $path/compile-netware-standard --- 1.2/netware/BUILD/compile-netware-debug Tue Mar 4 12:16:17 2003 +++ 1.3/netware/BUILD/compile-netware-debug Thu Apr 24 18:15:50 2003 @@ -1,5 +1,11 @@ #! /bin/sh +# debug +#set -x + +# stop on errors +set -e + path=`dirname $0` . $path/compile-netware-START --- 1.2/netware/BUILD/compile-netware-standard Tue Mar 4 12:16:17 2003 +++ 1.3/netware/BUILD/compile-netware-standard Thu Apr 24 18:15:50 2003 @@ -1,5 +1,12 @@ #! /bin/sh +# debug +#set -x + +# stop on errors +set -e + + path=`dirname $0` . $path/compile-netware-START --- New file --- +++ netware/BUILD/cron-build 03/04/24 18:15:50 #! /bin/sh # debug #set -x # stop on errors set -e # repository direcotry repo_dir=`pwd` # show usage show_usage() { cat << EOF usage: cron-patch EOF exit 0; } echo "starting build..." # check for bk and repo_dir bk help > /dev/null repo_dir=`bk root $repo_dir` cd $repo_dir # pull latest code echo 'y' | bk pull # determine version version=`grep -e "AM_INIT_AUTOMAKE(mysql, .*)" < configure.in | sed -e "s/AM_INIT_AUTOMAKE(mysql, \(.*\))/\1/"` echo "version: $version" # latest revision rev=`bk changes -e -n -d':REV:' | head -1` echo "latest revision: $rev" # run bootstrap ./netware/BUILD/nwbootstrap --revision=$rev --suffix=$rev --build=all echo "done" --- New file --- +++ netware/BUILD/crontab 03/04/24 18:15:51 00 23 * * * (export PATH='/usr/local/bin:/usr/bin:/bin'; export DISPLAY=':0'; cd ~/bk/mysqldoc; echo 'y' | bk pull) 00 00 * * * (export PATH='/usr/local/bin:/usr/bin:/bin'; export DISPLAY=':0'; cd ~/bk/mysql-4.0; ./netware/BUILD/cron-build) 00 04 * * * (export PATH='/usr/local/bin:/usr/bin:/bin'; export DISPLAY=':0'; cd ~/bk/mysql-4.1; ./netware/BUILD/cron-build) --- 1.2/netware/BUILD/mwasmnlm Tue Mar 4 12:16:17 2003 +++ 1.3/netware/BUILD/mwasmnlm Thu Apr 24 18:15:50 2003 @@ -1,5 +1,8 @@ #! /bin/sh +# stop on errors +set -e + args=" $*" wine --debugmsg -all -- mwasmnlm $args --- 1.2/netware/BUILD/mwccnlm Tue Mar 4 12:16:17 2003 +++ 1.3/netware/BUILD/mwccnlm Thu Apr 24 18:15:50 2003 @@ -1,5 +1,8 @@ #! /bin/sh +# stop on errors +set -e + # mwccnlm is having a hard time understanding "-I./../include" # convert it to "-I../include" args=" "`echo $* | sed -e 's/-I.\/../-I../g'` --- 1.2/netware/BUILD/mwldnlm Tue Mar 4 12:16:17 2003 +++ 1.3/netware/BUILD/mwldnlm Thu Apr 24 18:15:50 2003 @@ -1,5 +1,8 @@ #! /bin/sh +# stop on errors +set -e + args=" $*" wine --debugmsg -all -- mwldnlm $args --- 1.3/netware/BUILD/nwbootstrap Fri Mar 21 15:43:36 2003 +++ 1.4/netware/BUILD/nwbootstrap Thu Apr 24 18:15:50 2003 @@ -3,11 +3,11 @@ # debug #set -x -path=`dirname $0` - # stop on errors set -e +path=`dirname $0` + # repository direcotry repo_dir=`pwd` @@ -24,6 +24,7 @@ revision="" rev="" build="" +suffix="" mwenv="" # show usage @@ -81,6 +82,7 @@ --wine-build-dir=*) wine_build_dir=`echo "$arg" | sed -e "s;--wine-build-dir=;;"` ;; --revision=*) revision=`echo "$arg" | sed -e "s;--revision=;;"` ;; --build=*) build=`echo "$arg" | sed -e "s;--build=;;"` ;; + --suffix=*) suffix=`echo "$arg" | sed -e "s;--suffix=;;"` ;; --doc-dir=*) doc_dir=`echo "$arg" | sed -e "s;--doc-dir=;;"` ;; *) show_usage ;; esac @@ -110,6 +112,12 @@ # build target directory target_dir="$build_dir/mysql-$version" + +# add suffix +if test $suffix +then + target_dir="$target_dir-$suffix" +fi # delete any old target if test -d $target_dir.old; then rm -rf $target_dir.old; fi -- MySQL Internals Mailing List For list archives: http://lists.mysql.com/internals To unsubscribe: http://lists.mysql.com/internals?unsub=gcdmd-internals@xxxxxxxxxxx |
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | bk commit into 4.0 tree (1.1474): 00352, greg |
|---|---|
| Next by Date: | bk commit into 4.0 tree (1.1475): 00352, greg |
| Previous by Thread: | bk commit into 4.0 tree (1.1474)i: 00352, greg |
| Next by Thread: | bk commit into 4.0 tree (1.1474): 00352, lenz |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |