diff options
author | ndbdev@eel.hemma.oreland.se <> | 2004-08-05 22:19:52 +0200 |
---|---|---|
committer | ndbdev@eel.hemma.oreland.se <> | 2004-08-05 22:19:52 +0200 |
commit | 64618d7fe4c509b30f0990ecca3ffa366f8c27c5 (patch) | |
tree | 682d9074ab3a5be1182ff2e58fe002059f0ddca1 /BUILD | |
parent | b13e7483f5c4c7536ca92e52ffa49cef23db30e0 (diff) | |
parent | 7786fce2fd11bca0c4ba403e6117b5e18931b4b5 (diff) | |
download | mariadb-git-64618d7fe4c509b30f0990ecca3ffa366f8c27c5.tar.gz |
Merge joreland@bk-internal.mysql.com:irix
into eel.hemma.oreland.se:/ndb/clone-mysql-4.1-ndb-daily-2004-08-04
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-irix-mips64-mipspro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD/compile-irix-mips64-mipspro b/BUILD/compile-irix-mips64-mipspro index d8107ad73c0..1987fa13b1f 100755 --- a/BUILD/compile-irix-mips64-mipspro +++ b/BUILD/compile-irix-mips64-mipspro @@ -6,7 +6,7 @@ if [ ! -f "sql/mysqld.cc" ]; then fi cflags="-64 -mips4" - +config_args= if [ "$#" != 0 ]; then case "$1" in --help) @@ -25,8 +25,7 @@ if [ "$#" != 0 ]; then cflags="" ;; *) - echo "$0: invalid option '$1'; use --help to show usage" - exit 1 + config_args="$config_args $1"; shift ;; esac else @@ -79,6 +78,7 @@ cxxflags="$cxxflags -LANG:libc_in_namespace_std=OFF" CC=cc CXX=CC CFLAGS="$cflags" CXXFLAGS="$cxxflags" \ ./configure --prefix=/usr/local/mysql --disable-shared \ --with-extra-charsets=complex --enable-thread-safe-client \ - --without-extra-tools --disable-dependency-tracking + --without-extra-tools --disable-dependency-tracking \ + $config_args make |