Changeset 30119
- Timestamp:
- 2015-08-22T19:22:41+12:00 (8 years ago)
- Location:
- main/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gli/client-gli.sh
r24881 r30119 141 141 if [ "$GSDLOS" = "darwin" ]; then 142 142 custom_vm_args="-Xdock:name=$PROGABBR" 143 if [ -f "../client-gli.app/Contents/Resources/AutomatorApplet.icns" ]; then 144 custom_vm_args="$custom_vm_args -Xdock:icon=../client-gli.app/Contents/Resources/AutomatorApplet.icns" 145 fi 143 146 fi 144 147 -
main/trunk/gli/gems.sh
r23590 r30119 110 110 if [ "$GSDLOS" = "darwin" ]; then 111 111 custom_vm_args="-Xdock:name=$PROGABBR" 112 if [ -f "../gems.app/Contents/Resources/AutomatorApplet.icns" ]; then 113 custom_vm_args="$custom_vm_args -Xdock:icon=../gems.app/Contents/Resources/AutomatorApplet.icns" 114 fi 112 115 fi 113 116 -
main/trunk/gli/gli.sh
r25729 r30119 149 149 if [ "$GSDLOS" = "darwin" ]; then 150 150 custom_vm_args="-Xdock:name=$PROGABBR" 151 if [ -f "../gli.app/Contents/Resources/AutomatorApplet.icns" ]; then 152 custom_vm_args="$custom_vm_args -Xdock:icon=../gli.app/Contents/Resources/AutomatorApplet.icns" 153 fi 151 154 fi 152 155 -
main/trunk/greenstone3/gs3-server.sh
r30106 r30119 104 104 # JRE_HOME or JAVA_HOME must be set correctly to run this program 105 105 HINT="`pwd`/packages/jre" 106 if [ "$GSDLOS" = "darwin" ] && [ ! -d "$HINT" ]; then 107 HINT=`/usr/libexec/java_home` 106 if [ "$GSDLOS" = "darwin" ]; then 107 if [ ! -d "$HINT" ]; then 108 HINT=`/usr/libexec/java_home` 109 fi 110 111 # set the mac icon for when launching this script manually 112 if [ -f "gs3-server.app/Contents/Resources/AutomatorApplet.icns" ]; then 113 opt_properties="$opt_properties -Xdock:icon=gs3-server.app/Contents/Resources/AutomatorApplet.icns" 114 fi 108 115 fi 116 109 117 javapath=`search4j -p "$HINT" -m $java_min_version -e` 110 118 if [ "$?" == "0" ]; then
Note:
See TracChangeset
for help on using the changeset viewer.