Changeset d3615517c3435aa2f489370b06b91ce00645a36d

Show
Ignore:
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
  • extras/buildsystem/cmake/scripts/convert_vlc_to_cmake.sh

    r3373a70 rd361551  
    1212 
    1313echo "Installing CMakeLists.txt" 
     14rm -f CMakeLists.txt 
    1415ln -sf $cmake_dir/CMakeLists/root_CMakeLists.txt CMakeLists.txt 
    1516 
    1617echo "Installing src/CMakeLists.txt" 
     18rm -f src/CMakeLists.txt 
    1719ln -sf ../$cmake_dir/CMakeLists/src_CMakeLists.txt src/CMakeLists.txt 
    1820 
     21echo "Removing old modules/gui/qt4/CMakeLists.txt" 
     22rm -f modules/gui/qt4/CMakeLists.txt 
     23 
    1924echo "Installing modules/CMakeLists.txt" 
     25rm -f modules/CMakeLists.txt 
    2026ln -s ../$cmake_dir/CMakeLists/modules_CMakeLists.txt modules/CMakeLists.txt 
    2127 
    2228echo "Installing po/CMakeLists.txt" 
     29rm -f po/CMakeLists.txt 
    2330ln -s ../$cmake_dir/CMakeLists/po_CMakeLists.txt po/CMakeLists.txt 
    2431 
    2532echo "Installing include/config.h.cmake" 
     33rm -f include/config.h.cmake 
    2634ln -sf ../$cmake_dir/config.h.cmake include/config.h.cmake 
    2735 
    2836echo "Installing cmake/" 
     37rm -f cmake 
    2938ln -sf $cmake_dir/include cmake 
    3039