bisect-runner.pl should fix a typo in the Solaris hints file.
authorNicholas Clark <nick@ccl4.org>
Wed, 2 May 2012 09:26:15 +0000 (11:26 +0200)
committerNicholas Clark <nick@ccl4.org>
Tue, 28 May 2013 07:19:28 +0000 (09:19 +0200)
Without this typo fix about 700 revisions from 5.13.10 to 5.14.0-RC1 can't
be built on Solaris with Sun's compiler.

Porting/bisect-runner.pl

index a3709db..79837f3 100755 (executable)
@@ -2040,6 +2040,11 @@ EOT
                 }
             }
         }
+    } elsif ($^O eq 'solaris') {
+        if (($major == 13 || $major == 14)
+            && extract_from_file('hints/solaris_2.sh', qr/getconfldllflags/)) {
+            apply_commit('c80bde4388070c45');
+        }
     }
 }