From: Graham Knop Date: Tue, 3 Sep 2013 17:21:47 +0000 (-0400) Subject: use ExtUtils::CBuilder if available by reversing broken conditional X-Git-Tag: 0.26~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FClass-C3.git;a=commitdiff_plain;h=4dcc1329747eb410b61a876c10140d8cb3137cd2 use ExtUtils::CBuilder if available by reversing broken conditional --- diff --git a/Makefile.PL b/Makefile.PL index da4b59f..98b1de4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -93,7 +93,7 @@ sub can_xs { # Do we have the configure_requires checker? local $@; eval "require ExtUtils::CBuilder;"; - if (! $@ ) { + if ( $@ ) { # They don't obey configure_requires, so it is # someone old and delicate. Try to avoid hurting # them by falling back to an older simpler test.