diff options
author | unknown <joerg@trift2.> | 2006-11-30 11:03:49 +0100 |
---|---|---|
committer | unknown <joerg@trift2.> | 2006-11-30 11:03:49 +0100 |
commit | ba4c767e735839f27e1850cac110efca4cf78a50 (patch) | |
tree | 26e75ddab795d1b29d113075a485063929444356 /support-files/mysql.spec.sh | |
parent | 84d4f160aebef3c9406046df46f35f0472909b19 (diff) | |
download | mariadb-git-ba4c767e735839f27e1850cac110efca4cf78a50.tar.gz |
support-files/mysql.spec.sh : Call "make install" using "benchdir_root=%{_datadir}" (bug#24182).
support-files/mysql.spec.sh:
Call "make install" using "benchdir_root=%{_datadir}", because that is affecting
the regression test suite as well. Fixes bug#24182.
Diffstat (limited to 'support-files/mysql.spec.sh')
-rw-r--r-- | support-files/mysql.spec.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index a0e64d13b0c..33e1cb4ae2d 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -386,7 +386,7 @@ install -d $RBR%{_sbindir} # Install all binaries -(cd $MBD && make install DESTDIR=$RBR) +(cd $MBD && make install DESTDIR=$RBR benchdir_root=%{_datadir}) # Old packages put shared libs in %{_libdir}/ (not %{_libdir}/mysql), so do # the same here. mv $RBR/%{_libdir}/mysql/*.so* $RBR/%{_libdir}/ @@ -689,6 +689,11 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Thu Nov 30 2006 Joerg Bruehe <joerg@mysql.com> + +- Call "make install" using "benchdir_root=%{_datadir}", + because that is affecting the regression test suite as well. + * Thu Nov 16 2006 Joerg Bruehe <joerg@mysql.com> - Explicitly note that the "MySQL-shared" RPMs (as built by MySQL AB) |