Changeset d3615517c3435aa2f489370b06b91ce00645a36d
- Timestamp:
- 08/02/08 21:49:52
(10 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1202503792 +0000
- git-parent:
[d306828bc007af49a1248702096f4b6b8873aea5]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1202503792 +0000
- Message:
cmake: Correctly remove files prior to recmake.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3373a70 |
rd361551 |
|
| 12 | 12 | |
|---|
| 13 | 13 | echo "Installing CMakeLists.txt" |
|---|
| | 14 | rm -f CMakeLists.txt |
|---|
| 14 | 15 | ln -sf $cmake_dir/CMakeLists/root_CMakeLists.txt CMakeLists.txt |
|---|
| 15 | 16 | |
|---|
| 16 | 17 | echo "Installing src/CMakeLists.txt" |
|---|
| | 18 | rm -f src/CMakeLists.txt |
|---|
| 17 | 19 | ln -sf ../$cmake_dir/CMakeLists/src_CMakeLists.txt src/CMakeLists.txt |
|---|
| 18 | 20 | |
|---|
| | 21 | echo "Removing old modules/gui/qt4/CMakeLists.txt" |
|---|
| | 22 | rm -f modules/gui/qt4/CMakeLists.txt |
|---|
| | 23 | |
|---|
| 19 | 24 | echo "Installing modules/CMakeLists.txt" |
|---|
| | 25 | rm -f modules/CMakeLists.txt |
|---|
| 20 | 26 | ln -s ../$cmake_dir/CMakeLists/modules_CMakeLists.txt modules/CMakeLists.txt |
|---|
| 21 | 27 | |
|---|
| 22 | 28 | echo "Installing po/CMakeLists.txt" |
|---|
| | 29 | rm -f po/CMakeLists.txt |
|---|
| 23 | 30 | ln -s ../$cmake_dir/CMakeLists/po_CMakeLists.txt po/CMakeLists.txt |
|---|
| 24 | 31 | |
|---|
| 25 | 32 | echo "Installing include/config.h.cmake" |
|---|
| | 33 | rm -f include/config.h.cmake |
|---|
| 26 | 34 | ln -sf ../$cmake_dir/config.h.cmake include/config.h.cmake |
|---|
| 27 | 35 | |
|---|
| 28 | 36 | echo "Installing cmake/" |
|---|
| | 37 | rm -f cmake |
|---|
| 29 | 38 | ln -sf $cmake_dir/include cmake |
|---|
| 30 | 39 | |
|---|