Skip CMake files during the installation documentation

(cherry picked from commit 24a4b8adb3)
v3.5.13-sru
Slávek Banko 12 years ago
parent dc4d463414
commit 6e6feb9df8

@ -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 ";
}

Loading…
Cancel
Save