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

(-)file_not_specified_in_diff (-6 / +6 lines)
Line  Link Here
0
-- programs/winelauncher.in
0
++ programs/winelauncher.in
Lines 1-4 Link Here
1
#!/bin/sh
1
#!/bin/bash
2
#------------------------------------------------------------------------------
2
#------------------------------------------------------------------------------
3
#   Winelauncher
3
#   Winelauncher
4
#       This shell script attempts to intelligently manage the process
4
#       This shell script attempts to intelligently manage the process
Lines 195-201 Link Here
195
#------------------------------------------------------------------------------
195
#------------------------------------------------------------------------------
196
#  Okay, set the paths and move on.
196
#  Okay, set the paths and move on.
197
#------------------------------------------------------------------------------
197
#------------------------------------------------------------------------------
198
export LD_LIBRARY_PATH=$WINELIB:$LD_LIBRARY_PATH
198
export LD_LIBRARY_PATH=$WINELIB${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}
199
export PATH=$WINEBIN:$PATH
199
export PATH=$WINEBIN:$PATH
200
export WINELOADER=$WINEBIN/$WINE_BIN_NAME
200
export WINELOADER=$WINEBIN/$WINE_BIN_NAME
201
export WINEDLLPATH
201
export WINEDLLPATH
202
-- tools/winewrapper
202
++ tools/winewrapper
Lines 1-4 Link Here
1
#!/bin/sh
1
#!/bin/bash
2
#
2
#
3
# Wrapper script to run Wine and Winelib apps from inside the source tree
3
# Wrapper script to run Wine and Winelib apps from inside the source tree
4
#
4
#
Lines 64-70 Link Here
64
64
65
if [ -n "$LD_LIBRARY_PATH" ]
65
if [ -n "$LD_LIBRARY_PATH" ]
66
then
66
then
67
  LD_LIBRARY_PATH="$topdir/libs:$LD_LIBRARY_PATH"
67
  LD_LIBRARY_PATH="$topdir/libs${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}"
68
else
68
else
69
  LD_LIBRARY_PATH="$topdir/libs"
69
  LD_LIBRARY_PATH="$topdir/libs"
70
fi
70
fi

Return to bug 118188