Browse Source

Fix a silly bug...

Eric Andersen 22 years ago
parent
commit
3cc4bac6a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      extra/Configs/uClibc_config_fix.pl

+ 1 - 1
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;