summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsolenv/bin/linkoo1
1 files changed, 1 insertions, 0 deletions
diff --git a/solenv/bin/linkoo b/solenv/bin/linkoo
index 5bd061ed908f..538c70b73c83 100755
--- a/solenv/bin/linkoo
+++ b/solenv/bin/linkoo
@@ -255,6 +255,7 @@ sub scan_and_link_files($$$)
opendir ($dirh_toplevel, $build_path) || die "Can't open '$build_path': $!";
while (my $subdir = readdir ($dirh_toplevel)) {
$subdir =~ m/\./ && next; # eg. vcl.old,
+ $subdir eq 'solver' && next; # skip solver dir itself
my $test = "$build_path/$subdir/$target";
-d $test || next;
push @modules, $test;