diff options
author | Slávek Banko <[email protected]> | 2012-11-27 12:16:26 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-11-27 12:16:26 +0100 |
commit | 24a4b8adb3917095752bd4bee8674006e97e9141 (patch) | |
tree | b6fe7437215851120085d04b04088fcdd70472e6 | |
parent | c1baf917a63de33987068abea2a6d5b4987378ed (diff) | |
download | admin-24a4b8adb3917095752bd4bee8674006e97e9141.tar.gz admin-24a4b8adb3917095752bd4bee8674006e97e9141.zip |
Skip CMake files during the installation documentation
-rw-r--r-- | am_edit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1980,7 +1980,7 @@ sub tag_DOCFILES () { opendir (THISDIR, "."); foreach $entry (readdir(THISDIR)) { - next if ($entry eq "CVS" || $entry =~ /^\./ || $entry =~ /^Makefile/ || $entry =~ /~$/ || $entry =~ /^\#.*\#$/ || $entry eq "core" || $entry eq "index.cache.bz2"); + next if ($entry eq "CVS" || $entry =~ /^\./ || $entry =~ /^Makefile/ || $entry eq "CMakeLists.txt" || $entry eq "ConfigureChecks.cmake" || $entry =~ /~$/ || $entry =~ /^\#.*\#$/ || $entry eq "core" || $entry eq "index.cache.bz2"); next if (! -f $entry); $files .= "$entry "; } |