mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
CPack: Fix bash-isms in launch script
Patch from Raphael Geissert and Modestas Vainius. See issue #9659.
This commit is contained in:
parent
57ece74730
commit
b133467567
@ -3,28 +3,8 @@
|
|||||||
# Modified from: Aaron Voisine <aaron@voisine.org>
|
# Modified from: Aaron Voisine <aaron@voisine.org>
|
||||||
|
|
||||||
CWD="`dirname \"$0\"`"
|
CWD="`dirname \"$0\"`"
|
||||||
TMP=/tmp/$UID/TemporaryItems
|
TMP=/tmp/$(id -ru)/TemporaryItems
|
||||||
|
|
||||||
version=`sw_vers -productVersion`
|
|
||||||
if [ "$?" == "0" ]; then
|
|
||||||
major=${version%%\.*}
|
|
||||||
rest=${version#*\.}
|
|
||||||
minor=${rest%%\.*}
|
|
||||||
build=${rest#*\.}
|
|
||||||
else
|
|
||||||
major=10
|
|
||||||
minor=4
|
|
||||||
build=0
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo $version
|
|
||||||
echo "Major = $major"
|
|
||||||
echo "Minor = $minor"
|
|
||||||
echo "Build = $build"
|
|
||||||
|
|
||||||
|
|
||||||
# if 10.5 or greater, then all the open-x11 stuff need not occur
|
|
||||||
if ((( $major < 10 )) || ((( $major == 10)) && (( $minor < 5 )))); then
|
|
||||||
version=`sw_vers -productVersion`
|
version=`sw_vers -productVersion`
|
||||||
if [ "$?" = "0" ]; then
|
if [ "$?" = "0" ]; then
|
||||||
major=${version%%\.*}
|
major=${version%%\.*}
|
||||||
@ -44,7 +24,27 @@ echo "Build = $build"
|
|||||||
|
|
||||||
|
|
||||||
# if 10.5 or greater, then all the open-x11 stuff need not occur
|
# if 10.5 or greater, then all the open-x11 stuff need not occur
|
||||||
if ((( $major < 10 )) || ((( $major == 10)) && (( $minor < 5 )))); then
|
if [ "$major" -lt 10 ] || ([ "$major" -eq 10 ] && [ "$minor" -lt 5 ]); then
|
||||||
|
version=`sw_vers -productVersion`
|
||||||
|
if [ "$?" = "0" ]; then
|
||||||
|
major=${version%%\.*}
|
||||||
|
rest=${version#*\.}
|
||||||
|
minor=${rest%%\.*}
|
||||||
|
build=${rest#*\.}
|
||||||
|
else
|
||||||
|
major=10
|
||||||
|
minor=4
|
||||||
|
build=0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $version
|
||||||
|
echo "Major = $major"
|
||||||
|
echo "Minor = $minor"
|
||||||
|
echo "Build = $build"
|
||||||
|
|
||||||
|
|
||||||
|
# if 10.5 or greater, then all the open-x11 stuff need not occur
|
||||||
|
if [ "$major" -lt 10 ] || ([ "$major" -eq 10 ] && [ "$minor" -lt 5 ]); then
|
||||||
ps -wx -ocommand | grep -e '[X]11.app' > /dev/null
|
ps -wx -ocommand | grep -e '[X]11.app' > /dev/null
|
||||||
if [ "$?" != "0" -a ! -f ~/.xinitrc ]; then
|
if [ "$?" != "0" -a ! -f ~/.xinitrc ]; then
|
||||||
echo "rm -f ~/.xinitrc" > ~/.xinitrc
|
echo "rm -f ~/.xinitrc" > ~/.xinitrc
|
||||||
|
Loading…
Reference in New Issue
Block a user