diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2012-11-27 12:16:26 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-11-27 12:19:29 +0100 |
commit | 6e6feb9df80244c0b5af5cb760bd6d714e0daad2 (patch) | |
tree | 1de1a556008f555d81e2998dd09ccbd00600eb69 | |
parent | dc4d463414403b14248c2ceb04ed23817222ba26 (diff) | |
download | admin-6e6feb9df80244c0b5af5cb760bd6d714e0daad2.tar.gz admin-6e6feb9df80244c0b5af5cb760bd6d714e0daad2.zip |
Skip CMake files during the installation documentation
(cherry picked from commit 24a4b8adb3917095752bd4bee8674006e97e9141)
-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 "; } |