diff options
author | unknown <monty@donna.mysql.com> | 2001-01-02 14:29:47 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-02 14:29:47 +0200 |
commit | 6cfd66f0f80eaedaf6f22236e49dee919d2f6675 (patch) | |
tree | 06f19c5186e8abb542c18b22202664c033b53f4f /support-files | |
parent | 0475637d5fa1ff6ac010f4b315a980d5319903d7 (diff) | |
download | mariadb-git-6cfd66f0f80eaedaf6f22236e49dee919d2f6675.tar.gz |
Fixes to get mysql-test included in the distributions
client/mysqldump.c:
Fixed to not use strncasecmp
client/mysqlimport.c:
Fixed to not use strncasecmp
mysql-test/Makefile.am:
Changes needed for RPM
mysql-test/mysql-test-run.sh:
Changes to work with binary installations
scripts/make_binary_distribution.sh:
Added missing mysql-test files
sql-bench/Makefile.am:
Changes needed for RPM
sql/mysqld.cc:
Portability fix
support-files/mysql.spec.sh:
Added mysql-test to sql-bench
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index d5cfe4e9f54..333c2252761 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -85,7 +85,7 @@ Este pacote contém os clientes padrão para o MySQL. %package bench Release: %{release} Requires: MySQL-client MySQL-DBI-perl-bin perl -Summary: MySQL - Benchmarks +Summary: MySQL - Benchmarks and test system Group: Applications/Databases Summary(pt_BR): MySQL - Medições de desempenho Group(pt_BR): Aplicações/Banco_de_Dados @@ -168,7 +168,7 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-/bin:/usr/bin}\" \ " # benchdir does not fit in above model. Maybe a separate bench distribution - make benchdir=$RPM_BUILD_ROOT/usr/share/sql-bench + make benchdir_root=$RPM_BUILD_ROOT/usr/share/ } # Use the build root for temporary storage of the shared libraries. @@ -208,11 +208,12 @@ MBD=$RPM_BUILD_DIR/mysql-%{mysql_version} install -d $RBR/etc/{logrotate.d,rc.d/init.d} install -d $RBR/var/lib/mysql/mysql install -d $RBR/usr/share/sql-bench +install -d $RBR/usr/share/mysql-test install -d $RBR/usr/{sbin,share,man,include} install -d $RBR/usr/doc/MySQL-%{mysql_version} install -d $RBR/usr/lib # Make install -make install DESTDIR=$RBR benchdir=/usr/share/sql-bench +make install DESTDIR=$RBR benchdir_root=/usr/share/ # Install shared libraries (Disable for architectures that don't support it) (cd $RBR/usr/lib; tar xf $RBR/shared-libs.tar) @@ -366,9 +367,14 @@ fi %files bench %attr(-, root, root) /usr/share/sql-bench +%attr(-, root, root) /usr/share/mysql-test %changelog +* Tue Jan 2 2001 Monty + +- Added mysql-test to the bench package + * Fri Aug 18 2000 Tim Smith <tim@mysql.com> - Added separate libmysql_r directory; now both a threaded |