Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 524


Ignore:
Timestamp:
Dec 13, 2007, 11:28:55 PM (16 years ago)
Author:
nicolasc
Message:
  • made cmakeclearcache safe, that it only deletes files that it should
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/cmakeclearcache

    r389 r524  
    33# Author: Nicolas Perrenoud <nicolape@ee.ethz.ch>
    44
    5 find . -iname "cmakecache*" -exec rm -f {} \;
    6 find . -iname "cmake_ins*" -exec rm -f {} \;
    7 find . -iname "cmakefiles*" -exec rm -fr {} \;
    8 find . -iname "Makefile*" -exec rm -fr {} \;
     5find . -name "CMakeCache.txt" -exec rm -f {} \;
     6find . -name "cmake_install" -exec rm -f {} \;
     7find . -name "CMakeFiles" -exec rm -fr {} \;
     8find . -name "Makefile*" -exec rm -fr {} \;
    99
    1010echo "Cmake Cache cleared!"
Note: See TracChangeset for help on using the changeset viewer.