diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-06-15 18:37:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-06-15 18:37:27 +0000 |
commit | 3cc4bac6a3315cdcbc4dfb840ac48edb829cf85b (patch) | |
tree | 8f108d340373479b29c96c05617bfb8a98eb5487 /extra/Configs | |
parent | bdcefd62125e5e0025879ec9fec7e4e60b3d3516 (diff) |
Fix a silly bug...
Diffstat (limited to 'extra/Configs')
-rwxr-xr-x | extra/Configs/uClibc_config_fix.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/Configs/uClibc_config_fix.pl b/extra/Configs/uClibc_config_fix.pl index efefa3781..7988dff8b 100755 --- a/extra/Configs/uClibc_config_fix.pl +++ b/extra/Configs/uClibc_config_fix.pl @@ -166,7 +166,7 @@ while($line = <FILE>) { print "INCLUDE_THREADS=$threads\n"; next; } - if ($shared_support && $shared_support == "true") { + if ($shared_support && $shared_support =~ /true/ ) { if ($line =~ /^BUILD_UCLIBC_LDSO.*/) { print "BUILD_UCLIBC_LDSO=true\n"; next; |