diff options
author | unknown <lenz@mysql.com> | 2004-07-13 22:11:33 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2004-07-13 22:11:33 +0200 |
commit | 4b294ccdd3118abcf5799d91bc97a0b630b8a4a1 (patch) | |
tree | 3c26d543efdc6b5af4d98c499f114cbbc0f4ec4e | |
parent | 3c4c978ca4b9f7202bd244672428fefeef7acdb1 (diff) | |
download | mariadb-git-4b294ccdd3118abcf5799d91bc97a0b630b8a4a1.tar.gz |
- Fixed a previous modification to the MySQL Startup Item for
Mac OS X: the name of the startup script itself must match the
name of the subdirectory it's located in. Changed MySQL->MySQLCOM
in the Do-pkg script and renamed the file in BK. (Thanks to Bryan
McCormack for reporting this)
Build-tools/Do-pkg:
- renamed script from MySQL to MySQLCOM to match the name of the
directory it's installed in
support-files/MacOSX/MySQLCOM:
- Fixed the file and directory name to match the actual location
-rwxr-xr-x | Build-tools/Do-pkg | 2 | ||||
-rwxr-xr-x | support-files/MacOSX/MySQLCOM (renamed from support-files/MacOSX/MySQL) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Build-tools/Do-pkg b/Build-tools/Do-pkg index 286e33f6dd4..b9df444a4ba 100755 --- a/Build-tools/Do-pkg +++ b/Build-tools/Do-pkg @@ -96,7 +96,7 @@ $SI_PARAMS= <$SUPFILEDIR/StartupParameters.plist>; $SI_POST= <$SUPFILEDIR/StartupItem.postinstall>; $SI_NAME= "MySQLStartupItem"; $SI_DIR_NAME= "MySQLCOM"; -$SI_SCRIPT= <$SUPFILEDIR/MySQL>; +$SI_SCRIPT= <$SUPFILEDIR/MySQLCOM>; @RESOURCES= qw/ ReadMe.txt postinstall preinstall /; @LICENSES= ("$SRCBASEDIR/COPYING","$SRCBASEDIR/MySQLEULA.txt"); diff --git a/support-files/MacOSX/MySQL b/support-files/MacOSX/MySQLCOM index f6579700384..9be5edb56f7 100755 --- a/support-files/MacOSX/MySQL +++ b/support-files/MacOSX/MySQLCOM @@ -1,6 +1,6 @@ #!/bin/sh # -# /Library/StartupItems/MySQL/MySQL +# /Library/StartupItems/MySQLCOM/MySQLCOM # # A script to automatically start up MySQL on system bootup # for Mac OS X. This is actually just a wrapper script around |