summaryrefslogtreecommitdiffstats
path: root/Tests/SubDirSpaces
Commit message (Collapse)AuthorAgeFilesLines
* Convert CMake-language commands to lower caseKitware Robot2012-08-136-51/+51
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* Disable SubDirSpaces parens with GNU Make 3.82 (#11654)Brad King2011-01-111-1/+9
| | | | | | | | | GNU Make 3.82 incorrectly parses make dependencies involving parentheses in path names. See related upstream issue: http://savannah.gnu.org/bugs/?30612 Skip testing the ()-named subdirectory.
* ENH: preclean some warningsKen Martin2008-03-253-0/+3
|
* ENH: watcom wmake can not handle () in the path with cd commandBill Hoffman2007-02-272-2/+21
|
* COMP: Disable rpath with spaces on some systems.Brad King2007-02-261-0/+6
|
* ENH: add a commentBill Hoffman2007-02-221-0/+1
|
* ENH: show make results on the dashboardBill Hoffman2007-02-221-0/+1
|
* ENH: fix parens in the path with spaces in the pathBill Hoffman2007-02-224-2/+9
|
* ENH: make the test really test targets with spacesKen Martin2007-02-191-1/+1
|
* ENH: added used sources with a path that has spacesKen Martin2007-02-192-0/+50
|
* ENH: new test for spaces in the tree structureKen Martin2007-02-1919-0/+201