From 6e6feb9df80244c0b5af5cb760bd6d714e0daad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 27 Nov 2012 12:16:26 +0100 Subject: [PATCH] Skip CMake files during the installation documentation (cherry picked from commit 24a4b8adb3917095752bd4bee8674006e97e9141) --- am_edit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "; }