diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-30 23:31:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-31 10:43:26 +0100 |
commit | f267b791f8eb9b32442ad98613a491737e3fc334 (patch) | |
tree | a22df63957fb45ee92112049c883cc163098157c /solenv/bin/linkoo | |
parent | d9a749ac97f77d61896c85181dfa4e5d7c1b3782 (diff) |
skip solver dir itself
Diffstat (limited to 'solenv/bin/linkoo')
-rwxr-xr-x | solenv/bin/linkoo | 1 |
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; |