• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Development Discussion v
« Previous 1 ... 45 46 47 48 49 ... 117 Next »

Uninstall dolphin-emu on Debian 7 after make install
View New Posts | View Today's Posts

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
Uninstall dolphin-emu on Debian 7 after make install
11-03-2013, 03:52 AM
#1
RyDroid
Unregistered
 
Hi.

I do not know if it is the good thread for that. I am sorry if it is not.

With the wiki page Linux_Build, I have successfully installed dolphin-emu (4.0-298). I am under GNU/Linux Debian 7 (the last stable).
But if one day I would like to uninstall dolphin-emu, I wonder how can I do.
In build/, sudo make uninstall says that there is no rule to build the target "uninstall". Is it normal?
In build/, I have install_manifest.txt that seems to be a list of all installed file. A script that removes each file of the install_manifest.txt can uninstall dolphin-emu?
Is there an easy solution?

Thanks.
Reply
11-03-2013, 03:56 AM
#2
neobrain Offline
"Wow, I made my code 1000x faster! That means I can make it 2048x slower now!"
**********
Developers (Some Administrators and Super Moderators)
Posts: 3,208
Threads: 50
Joined: Jun 2009
cat install_manifest.txt | xargs rm
My blog
Me on Twitter
My wishlist on Amazon.de
Find
Reply
11-03-2013, 09:30 AM
#3
RyDroid
Unregistered
 
Ok, thanks.
Reply
11-08-2013, 07:22 AM
#4
SkySkimmer
Unregistered
 
Actually that wouldn't work. First you would need to use rm -r (or rmdir or similar) to remove the directories (although you might not care about leaving empty directories).
Second and more important it would give weird results if there's a space in a filename. For example testing on my install without being root produces
Quote:....
rm: cannot remove ‘/usr/local/share/dolphin-emu/sys/Themes/Clean’: Is a directory
rm: cannot remove ‘Lite/play@2x.png’: No such file or directory
...
If using rm -r this might be dangerous if you're using the command from somewhere with eg a subdirectory named "Lite".

Using
Quote: cat install_manifest.txt | xargs -d '\n' rm
should solve that problem.
Reply
« Next Oldest | Next Newest »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode