Subject: | Uninterpolated variables in Makefile.PL error message |
On windows:
Checking for Microsoft Windows... (not supported)
OS unsupported
Sys::SigAction is not Supported on on $^O operating systems
if you can make all or most of the tests work on this OS, then
please send patches to me, and I will consider them for a new
release that supports $^O.
Note that smoke testers have had successful results in a Cygwin
environment however. So if you want to write scripts using
signals on a Win32 environment consider Cygwin Bash.
Lincoln
at Makefile.PL line 10.
note the use of $^O in the message instead of MSWin32. The attached diff fixes the issue.
Subject: | qq.diff |
diff --git a/Makefile.PL b/Makefile.PL
index 2c6937a..c1899a5 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -7,7 +7,7 @@ use ExtUtils::MakeMaker;
#
print "Checking for Microsoft Windows... (not supported)\n";
if ( $^O =~ /MSWin32/ ) {
- die q{
+ die qq{
OS unsupported