Changeset 05edb16cfd225b9bdeec8cf7f5acdc2c06217b30

Show
Ignore:
Timestamp:
09/07/05 21:17:13 (3 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1120936633 +0000
git-parent:

[65bbd83c0bf21423e84f0b712a13e3dcbacb3ec1]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1120936633 +0000
Message:

Don't delete SVN-tracked files with --distclean (closes #251)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • toolbox

    r575c056 r05edb16  
    44##  $Id$ 
    55## 
     6##  Copyright (C) 2005  the VideoLAN team 
     7## 
    68##  Authors: Samuel Hocevar <sam@zoy.org> 
     9##           R� Denis-Courmont <rem # videolan.org> 
    710 
    811### 
     
    539542  test -f vlc.spec.mdk -a -f debian/rules || exit 1 
    540543  # let's rock! 
    541   find . -type f '(' -name '*.[oa]' -o -name '*.so' -o -name '*.sl' -o -name '*.dylib' -o -name '*.dll' -o -name .dirstamp -o -name Makefile.in -o -name 'stamp-h*' -o -name '*~' -o -name '*.bak' -o -name '*.moc.cpp' ')' -exec rm -f '{}' ';' 
     544  find . -type f '(' -name '*.[oa]' -o -name '*.so' -o -name '*.sl' -o -name '*.dylib' -o -name '*.dll' -o -name .dirstamp -o '(' '(' ! -path '\./doc/developer/Makefile\.in' ')' -a -name Makefile.in ')' -o -name 'stamp-h*' -o -name '*~' -o -name '*.bak' -o -name '*.moc.cpp' ')' -exec rm -f '{}' ';' 
    542545  (cd autotools && find . -name '[a-z]*' -maxdepth 1 -exec rm -f '{}' ';') 
    543   (cd debian && find . -type d -name '[a-z]*' -maxdepth 1 -exec rm -Rf '{}' ';') 
     546  (cd debian && find . -type d '(' -name '[a-z]*' ! -name 'patches' ')' -maxdepth 1 -exec rm -Rf '{}' ';') 
    544547  find msvc -type f -name '*.dsp' -exec rm -f '{}' ';' 
    545548  find evc -type f -name '*.vcp' -exec rm -f '{}' ';'