summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-11-27 12:16:26 +0100
committerSlávek Banko <slavek.banko@axis.cz>2012-11-27 12:19:29 +0100
commit6e6feb9df80244c0b5af5cb760bd6d714e0daad2 (patch)
tree1de1a556008f555d81e2998dd09ccbd00600eb69
parentdc4d463414403b14248c2ceb04ed23817222ba26 (diff)
downloadadmin-6e6feb9df80244c0b5af5cb760bd6d714e0daad2.tar.gz
admin-6e6feb9df80244c0b5af5cb760bd6d714e0daad2.zip
Skip CMake files during the installation documentation
(cherry picked from commit 24a4b8adb3917095752bd4bee8674006e97e9141)
-rw-r--r--am_edit2
1 files changed, 1 insertions, 1 deletions
diff --git a/am_edit b/am_edit
index 867565b..3d88161 100644
--- a/am_edit
+++ b/am_edit
@@ -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 ";
}