summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-06-15 18:37:27 +0000
committerEric Andersen <andersen@codepoet.org>2002-06-15 18:37:27 +0000
commit3cc4bac6a3315cdcbc4dfb840ac48edb829cf85b (patch)
tree8f108d340373479b29c96c05617bfb8a98eb5487 /extra
parentbdcefd62125e5e0025879ec9fec7e4e60b3d3516 (diff)
Fix a silly bug...
Diffstat (limited to 'extra')
-rwxr-xr-xextra/Configs/uClibc_config_fix.pl2
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;