diff options
author | unknown <lenz@mysql.com> | 2003-06-11 13:38:02 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-06-11 13:38:02 +0200 |
commit | 497e11035dd990f427c4bb2db9557f57d94e0bdb (patch) | |
tree | 5d2744c759eef0aa20d48d15f28fa56fbe07e8ba /support-files | |
parent | a1a58d6c5a9799cd3746d5bef85a9347051ef356 (diff) | |
download | mariadb-git-497e11035dd990f427c4bb2db9557f57d94e0bdb.tar.gz |
- fixed a path to init script in RPM spec file (/sbin/init.d is obsolete)
support-files/mysql.spec.sh:
- fixed path to init script (/sbin/init.d is obsolete)
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 06ba2d63f45..6cc33866efd 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -327,7 +327,7 @@ install -m755 $MBD/support-files/mysql.server $RBR/etc/init.d/mysql # Create a symlink "rcmysql", pointing to the init.script. SuSE users # will appreciate that, as all services usually offer this. -ln -s ../../sbin/init.d/mysql $RPM_BUILD_ROOT/usr/sbin/rcmysql +ln -s ../../etc/init.d/mysql $RPM_BUILD_ROOT/usr/sbin/rcmysql # Create symbolic compatibility link safe_mysqld -> mysqld_safe # (safe_mysqld will be gone in MySQL 4.1) |