Hi All,
i installed spring via sources:
scons configure
scons build
scons install
But how can i remove this files ?
scons uninstall isn't known.
I want try to install the ubuntu packages, but i need to uninstall all spring files first.
regards bert
uninstall spring from source
Moderator: Moderators
-
- Spring Developer
- Posts: 1254
- Joined: 24 Jun 2007, 08:34
Re: uninstall spring from source
Cmake creates a list of files when installing, maybe scons does the same? If not, you will have to manually delete all the files, they are by default in /usr/local
-
- Posts: 50
- Joined: 21 Jul 2006, 22:11
Re: uninstall spring from source
But does cmake configure create a routine for cmake uninstall or do i have to uninstall it manually with cmake too ?Auswaschbar wrote:Cmake creates a list of files when installing, maybe scons does the same? If not, you will have to manually delete all the files, they are by default in /usr/local
-
- Spring Developer
- Posts: 1254
- Joined: 24 Jun 2007, 08:34
Re: uninstall spring from source
Code: Select all
xargs rm < install_manifest.txt
Re: uninstall spring from source
With scons you should be able to do
from the same place where you issued scons install before.
Code: Select all
scons -c install
-
- Posts: 50
- Joined: 21 Jul 2006, 22:11
Re: uninstall spring from source
No, it only cleans the build directory, but not the system i think.Tobi wrote:With scons you should be able to dofrom the same place where you issued scons install before.Code: Select all
scons -c install
-
- Posts: 50
- Joined: 21 Jul 2006, 22:11
Re: uninstall spring from source
There is no install_manifest.txt file in my spring directory.Auswaschbar wrote:Code: Select all
xargs rm < install_manifest.txt
I did it manually, but i am not sure whether i miss something to remove.
Code: Select all
rm -r /usr/local/lib/spring
rm -r /usr/local/games/spring
rm -r /usr/local/share/games/spring/
rm -r /usr/local/share/pixmaps/spring.png
rm -r /usr/local/share/doc/springlobby/
Re: uninstall spring from source
when using cmake, the install_manifest.txt file would be in your build directory. eg the dir where yo urun make install from.
Re: uninstall spring from source
Hmm that would be a bug in scons then.kaiserbert wrote:No, it only cleans the build directory, but not the system i think.Tobi wrote:With scons you should be able to dofrom the same place where you issued scons install before.Code: Select all
scons -c install
As far as I know -c with a target is supposed to "undo" the target. (I'm sure it used to work this way in the past.)