View | Details | Raw Unified | Return to bug 13256
Collapse All | Expand All

(-)lazarus/tools/runwait.sh~ (-3 / +4 lines)
Lines 7-16 echo $CommandLine Link Here
7
ext=${CommandLine#*.}
7
ext=${CommandLine#*.}
8
if [ "$ext" = "exe" ]; then
8
if [ "$ext" = "exe" ]; then
9
  echo "Windows Executable detected. Attempting to use WINE..."
9
  echo "Windows Executable detected. Attempting to use WINE..."
10
  if [ -x "`which wine`" ]; then
10
  WINE=/usr/bin/wine
11
    wine $CommandLine
11
  if [ -x "$WINE" ]; then
12
    $WINE $CommandLine
12
  else
13
  else
13
    echo "WINE not found in path"
14
    echo "$WINE not found"
14
  fi
15
  fi
15
else
16
else
16
  $CommandLine
17
  $CommandLine

Return to bug 13256