buildfarm r478: Erase all *.la and *.lai files during postinst

URL: https://svn.lrde.epita.fr/svn/lrde-tools/trunk/buildbot/masters ChangeLog: 2007-12-05 Alexandre Duret-Lutz <adl@lrde.epita.fr> * buildfactory.py (post_install_cmd): Erase all *.la and *.lai files, not just lib*.la* files. --- buildfactory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: trunk/buildbot/masters/buildfactory.py =================================================================== --- trunk/buildbot/masters/buildfactory.py (revision 477) +++ trunk/buildbot/masters/buildfactory.py (revision 478) @@ -212,7 +212,7 @@ self.post_install_cmd = '''\ set -ex %s -find . -type f -name "lib*.la*" -print -exec rm {} ";" +find . -type f "(" -name "*.la" -o -name "*.lai" ")" -print -exec rm {} ";" echo 'Moving the previous install out of the way...' # Remove older old installs if any. if test -d %s_old; then
participants (1)
-
Alexandre Duret-Lutz