You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
679 B
16 lines
679 B
Don't guess basedir in mysql_config; we place it under _libdir because |
|
of multilib conflicts, so use rather configured @prefix@ path directly. |
|
|
|
diff -up mariadb-10.0.13/scripts/mysql_config.sh.patch32 mariadb-10.0.13/scripts/mysql_config.sh |
|
--- mariadb-10.0.13/scripts/mysql_config.sh.patch32 2014-08-13 17:28:51.174776518 +0200 |
|
+++ mariadb-10.0.13/scripts/mysql_config.sh 2014-08-13 17:32:18.205275028 +0200 |
|
@@ -76,8 +76,7 @@ get_full_path () |
|
|
|
me=`get_full_path $0` |
|
|
|
-# Script might have been renamed but assume mysql_<something>config<something> |
|
-basedir=`echo $me | sed -e 's;/bin/mysql_.*config.*;;'` |
|
+basedir='@prefix@' |
|
|
|
ldata='@localstatedir@' |
|
execdir='@libexecdir@'
|
|
|