Skip Menu |

This queue is for tickets about the Alien-wxWidgets CPAN distribution.

Report information
The Basics
Id: 87202
Status: new
Priority: 0/
Queue: Alien-wxWidgets

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.65
Fixed in: 0.66



Subject: [PATCH] wrong return precedence
returns binds stronger than and, so the expressions after and are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: Alien-wxWidgets-0.64-returnor.patch
diff -bu ./lib/Alien/wxWidgets/Utility.pm~ ./lib/Alien/wxWidgets/Utility.pm --- ./lib/Alien/wxWidgets/Utility.pm~ 2013-04-13 03:15:38.000000000 -0500 +++ ./lib/Alien/wxWidgets/Utility.pm 2013-07-19 16:24:57.200682998 -0500 @@ -74,7 +74,7 @@ sub awx_cc_is_msvc { my( $cc ) = @_; - return $^O =~ /MSWin32/ and $cc =~ /^cl/i; + return ($^O =~ /MSWin32/ and $cc =~ /^cl/i); } sub awx_cc_is_gcc {