Skip to content
Snippets Groups Projects
Commit de53c487 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard
Browse files

Added uninstall hints.

parent f552359c
No related branches found
No related tags found
No related merge requests found
...@@ -124,6 +124,10 @@ Once Wine has been built correctly, you can do "make install"; this ...@@ -124,6 +124,10 @@ Once Wine has been built correctly, you can do "make install"; this
will install the wine executable, the Wine man page, and a few other will install the wine executable, the Wine man page, and a few other
needed files. needed files.
Don't forget to uninstall any conflicting previous Wine installation
first. Try either "dpkg -r wine" or "rpm -e wine" or "make uninstall"
before installing.
If you want to build the documentation, you can run "make" in the If you want to build the documentation, you can run "make" in the
documentation directory. documentation directory.
......
...@@ -183,6 +183,14 @@ if [ $RET -eq 0 ]; then ...@@ -183,6 +183,14 @@ if [ $RET -eq 0 ]; then
fi fi
fi fi
# check whether wine binary still available
if [ -n "`which wine`" ]; then
echo "Warning !! wine binary (still) found, which may indicate"
echo "a (conflicting) previous installation."
echo "You might want to abort and uninstall Wine first."
std_sleep
fi
# run the configure script, if necessary # run the configure script, if necessary
if [ -f config.cache ] && [ -f Makefile ] && [ Makefile -nt configure ] if [ -f config.cache ] && [ -f Makefile ] && [ Makefile -nt configure ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment