Changeset c40d24815fbe31c9cf741eee40cf47830704d0f9
- Timestamp:
- 03/03/08 23:41:27
(5 months ago)
- Author:
- Pavlov Konstantin <thresh@videolan.org>
- git-committer:
- Pavlov Konstantin <thresh@videolan.org> 1204584087 +0300
- git-parent:
[0f8d02ae0dade744e73b415326337b772eba2495]
- git-author:
- Pavlov Konstantin <thresh@videolan.org> 1204584087 +0300
- Message:
toolbox: check for other files instead of missing ones.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rce87aca |
rc40d248 |
|
| 222 | 222 | set -x |
|---|
| 223 | 223 | # a naive sanity check to make sure we are in a VLC tree |
|---|
| 224 | | test -f vlc.mandriva.spec -a -f vlc.win32.nsi.in || exit 1 |
|---|
| | 224 | test -f vlc-config.in.in -a -f src/libvlc.c || exit 1 |
|---|
| 225 | 225 | # let's rock! |
|---|
| 226 | 226 | find . -false -path './extras/contrib/*' -type f '(' -name '*.[oa]' -o -name '*.l[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 '{}' ';' |
|---|