List:Internals« Previous MessageNext Message »
From:Eric Herman Date:September 17 2005 3:10am
Subject:bk commit into 5.0 tree (eric:1.1975)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of eric. When eric 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://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.1975 05/09/16 18:10:36 eric@stripped +2 -0
  Brian's "he is too lazy to commit this so Eric is going to have to do it" environmental
variable hack for prefix. This allows you to just set a prefix in your profile which will
be used in all of your builds. AKA you can be even lazier(!) about calling BUILD scripts.
Don't blame Eric, Brian borrowed his keyboard.

  BUILD/autorun.sh
    1.4 05/09/16 18:10:27 eric@stripped +1 -1
    Change of syntax

  BUILD/SETUP.sh
    1.45 05/09/16 18:10:27 eric@stripped +5 -0
    Added option to set environmental variable in case you are lazy about setting prefix
(ala Brian)

# 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:	eric
# Host:	sleek.local
# Root:	/Users/eric/dev/mysql-5.0

--- 1.3/BUILD/autorun.sh	2005-07-18 10:33:00 -07:00
+++ 1.4/BUILD/autorun.sh	2005-09-16 18:10:27 -07:00
@@ -7,7 +7,7 @@
 autoheader || die "Can't execute autoheader"
 # --force means overwrite ltmain.sh script if it already exists 
 # Added glibtoolize reference to make native OSX autotools work
-if [ -f /usr/bin/glibtoolize ] ; then
+if test -f /usr/bin/glibtoolize  ; then
   glibtoolize --automake --force || die "Can't execute glibtoolize"
 else
   libtoolize --automake --force || die "Can't execute libtoolize"

--- 1.44/BUILD/SETUP.sh	2005-07-15 17:36:16 -07:00
+++ 1.45/BUILD/SETUP.sh	2005-09-16 18:10:27 -07:00
@@ -10,6 +10,11 @@
 just_print=
 just_configure=
 full_debug=
+if test -n $MYSQL_BUILD_PREFIX
+then
+  prefix_configs="--prefix=$MYSQL_BUILD_PREFIX"
+fi
+
 while test $# -gt 0
 do
   case "$1" in
Thread
bk commit into 5.0 tree (eric:1.1975)Eric Herman17 Sep