Removed no longer needed support for patching the debugger path in the
registry.
diff --git a/tools/wineinstall b/tools/wineinstall
index eb0dde4..2b5fe7f 100755
--- a/tools/wineinstall
+++ b/tools/wineinstall
@@ -111,10 +111,6 @@
# (DLLPATH should point to them if/when they are not in standard ld.so paths)
DLLPATH=$libdir/wine # default path of the dll .so files (except libwine.so)
-# having the Wine debugger launched automatically will be a plus for us
-DEBUGGER=$bindir/winedbg # the (installed) path of winedbg
-HDEBUGGER=debugger/winedbg # the (non-installed) path of winedbg
-
# this is only for existing-windows installs
WINECONF=tools/wineconf # path to the wineconf perl script
@@ -130,7 +126,6 @@
# temporary files used by the installer
TMPCONF=/tmp/wineinstall.conf
-TMPREG=/tmp/wineinstall.reg
# functions
@@ -414,7 +409,6 @@
else LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD:$DLLPATH"
fi
export LD_LIBRARY_PATH
- DEBUGGER="$PWD/$HDEBUGGER"
echo
echo "NOTE! To run Wine without installing, you must set the environment variable"
echo "LD_LIBRARY_PATH to $PWD:$DLLPATH"
@@ -510,7 +504,7 @@
echo -n "Searching for an existing Windows installation..."
if ! $WINECONF -inifile "$WINEINI" > $TMPCONF 2>/dev/null
then {
- rm -f $TMPCONF $TMPREG > /dev/null
+ rm -f $TMPCONF > /dev/null
echo " not found. (no matching /etc/fstab mount entry found)"
conf_question low do_without_windows \
@@ -691,14 +685,10 @@
sed "s/\"GraphicsDriver\" = .*/\"GraphicsDriver\" = \"ttydrv\"/" $LCONF.new > $LCONF
fi
- # create a temporary wineinstall.reg with fixed debugger path
- $DEFCAT $DEFREG | sed "s|debugger/winedbg|${DEBUGGER}|" > $TMPREG
-
echo "Installing default Wine registry entries..."
echo
- if ! $REGEDIT $TMPREG > /dev/null
+ if ! $REGEDIT $DEFREG > /dev/null
then {
- rm -f $TMPREG
echo "Registry install failed."
conf_reset_question regedit_error
conf_question high regedit_error
@@ -710,9 +700,8 @@
# registry data. so if we are converting we need to run regedit twice
if [ "$CONVCONF" = 'yes' ]
then
- if ! $REGEDIT $TMPREG > /dev/null
+ if ! $REGEDIT $DEFREG > /dev/null
then
- rm -f $TMPREG
echo "Registry install failed."
conf_reset_question regedit_error
conf_question high regedit_error
@@ -727,7 +716,6 @@
fi
}
fi
- rm -f $TMPREG
if [ "$SYSREG" = 'auto' ]
then SYSREG=yes
fi
@@ -769,9 +757,6 @@
if [ -f $TMPCONF ]
then rm -f $TMPCONF
fi
-if [ -f $TMPREG ]
-then rm -f $TMPREG
-fi
# it's a wrap