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/preflight.sh | |
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/preflight.sh')
-rw-r--r-- | support-files/MacOSX/preflight.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/support-files/MacOSX/preflight.sh b/support-files/MacOSX/preflight.sh new file mode 100644 index 00000000000..700d0640a9e --- /dev/null +++ b/support-files/MacOSX/preflight.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# +# 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 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>) +# + +PREFIX="@prefix@" +BASENAME=`basename $PREFIX` + +if [ -d $PREFIX -a ! -L $PREFIX -a $BASENAME = "mysql" ] ; then + mv $PREFIX $PREFIX.bak +fi |