The unified diff between revisions [bd0f733f..] and [927e5331..] is displayed below. It can also be downloaded as a raw diff.
#
#
# patch "configure.pl"
# from [b9c4d9df325812d06e3e5cff3d2d2aad1bc5ae89]
# to [614cec2dbe8c185af03df7ead81734e425dd09d6]
#
============================================================
--- configure.pl b9c4d9df325812d06e3e5cff3d2d2aad1bc5ae89
+++ configure.pl 614cec2dbe8c185af03df7ead81734e425dd09d6
@@ -823,7 +823,8 @@ sub dir_list {
my ($dir) = @_;
opendir(DIR, $dir) or croak("Couldn't read directory '$dir' ($!)");
- my @listing = grep { $_ ne File::Spec->curdir() and
+ my @listing = grep { !/#/ and
+ $_ ne File::Spec->curdir() and
$_ ne File::Spec->updir() } readdir DIR;
closedir DIR;