diff options
author | unknown <lenz@mysql.com> | 2005-08-11 20:23:12 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2005-08-11 20:23:12 +0200 |
commit | ed0d295e3a2b6af960a64b3cbeacf024c2484635 (patch) | |
tree | f2838465246eeec0515e51cb44717ab8dbb647ce /support-files/MacOSX | |
parent | 8c5e6af57d519005125f6b6c2e886d9b9237ef29 (diff) | |
download | mariadb-git-ed0d295e3a2b6af960a64b3cbeacf024c2484635.tar.gz |
- Fix for BUG#11380 (as recommened by JimW): renamed the preinstall/postinstall scripts to
preflight/postflight instead, so they are run every time a PKG is installed, not only for
a fresh installation
support-files/MacOSX/Makefile.am:
- Fix for BUG#11380 (as recommened by JimW): renamed the preinstall/postinstall scripts to
preflight/postflight instead, so they are run every time, not only for a fresh installation
support-files/MacOSX/postflight.sh:
- Fix for BUG#11380 (as recommened by JimW): renamed the preinstall/postinstall scripts to
preflight/postflight instead, so they are run every time, not only for a fresh installation
support-files/MacOSX/preflight.sh:
- Fix for BUG#11380 (as recommened by JimW): renamed the preinstall/postinstall scripts to
preflight/postflight instead, so they are run every time, not only for a fresh installation
- fixed comment typo
Diffstat (limited to 'support-files/MacOSX')
-rw-r--r-- | support-files/MacOSX/Makefile.am | 12 | ||||
-rw-r--r-- | support-files/MacOSX/postflight.sh (renamed from support-files/MacOSX/postinstall.sh) | 2 | ||||
-rw-r--r-- | support-files/MacOSX/preflight.sh (renamed from support-files/MacOSX/preinstall.sh) | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/support-files/MacOSX/Makefile.am b/support-files/MacOSX/Makefile.am index cc22d08daea..d23ea142170 100644 --- a/support-files/MacOSX/Makefile.am +++ b/support-files/MacOSX/Makefile.am @@ -20,8 +20,8 @@ EXTRA_DIST = Info.plist.sh \ Description.plist.sh \ StartupParameters.plist.sh \ - postinstall.sh \ - preinstall.sh \ + postflight.sh \ + preflight.sh \ ReadMe.txt \ MySQL \ StartupItem.Description.plist \ @@ -31,14 +31,14 @@ EXTRA_DIST = Info.plist.sh \ noinst_DATA = Info.plist \ Description.plist \ StartupParameters.plist \ - postinstall \ - preinstall + postflight \ + preflight CLEANFILES = Info.plist \ Description.plist \ StartupParameters.plist \ - postinstall \ - preinstall + postflight \ + preflight SUFFIXES = .sh diff --git a/support-files/MacOSX/postinstall.sh b/support-files/MacOSX/postflight.sh index f46f4480e3e..df3cd419360 100644 --- a/support-files/MacOSX/postinstall.sh +++ b/support-files/MacOSX/postflight.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# postinstall - this script will be executed after the MySQL PKG +# postfligh - this script will be executed after the MySQL PKG # installation has been performed. # # This script will install the MySQL privilege tables using the diff --git a/support-files/MacOSX/preinstall.sh b/support-files/MacOSX/preflight.sh index 62772573c46..700d0640a9e 100644 --- a/support-files/MacOSX/preinstall.sh +++ b/support-files/MacOSX/preflight.sh @@ -1,10 +1,10 @@ #!/bin/sh # -# preinstall - this script will be executed before the MySQL PKG +# preflight - this script will be executed before the MySQL PKG # installation will be performed. # # If this package has been compiled with a prefix ending with "mysql" (e.g. -# /usr/local/mysql or /opt/mysql), it will rename any previosuly existing +# /usr/local/mysql or /opt/mysql), it will rename any previously existing # directory with this name before installing the new package (which includes # a symlink named "mysql", pointing to the newly installed directory, which # is named mysql-<version>) |