Changeset 05edb16cfd225b9bdeec8cf7f5acdc2c06217b30
- 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
| r575c056 |
r05edb16 |
|
| 4 | 4 | ## $Id$ |
|---|
| 5 | 5 | ## |
|---|
| | 6 | ## Copyright (C) 2005 the VideoLAN team |
|---|
| | 7 | ## |
|---|
| 6 | 8 | ## Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| | 9 | ## R� Denis-Courmont <rem # videolan.org> |
|---|
| 7 | 10 | |
|---|
| 8 | 11 | ### |
|---|
| … | … | |
| 539 | 542 | test -f vlc.spec.mdk -a -f debian/rules || exit 1 |
|---|
| 540 | 543 | # 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 '{}' ';' |
|---|
| 542 | 545 | (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 '{}' ';') |
|---|
| 544 | 547 | find msvc -type f -name '*.dsp' -exec rm -f '{}' ';' |
|---|
| 545 | 548 | find evc -type f -name '*.vcp' -exec rm -f '{}' ';' |
|---|