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 /Build-tools | |
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
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-pkg | 2 |
1 files changed, 1 insertions, 1 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"); |