<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 2bfcc9e190c15e27f99d79e3fa5c5a00aae08845 Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Wed, 8 Jun 2016 22:27:31 +0200
Subject: [PATCH] fix "Unescaped left brace in regex" (RT #115110)

---
 Makefile.PL | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.PL b/Makefile.PL
index 5b07c80..33bb09c 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -64,11 +64,11 @@ if (0 &amp;&amp; $ENV{MTHURN_PERL_DEV})
     {
     print " EEE did not find DIRFILESEP in Makefile\n";
     } # if
-  if ($s !~ s/(pm_to_blib\(){{\@ARGV}}/$1 . '{@ARGV}'/e)
+  if ($s !~ s/(pm_to_blib\()\{\{\@ARGV}}/$1 . '{@ARGV}'/e)
     {
     print " EEE did not find pm_to_blib@ARGV in Makefile\n";
     } # if
-  if ($s !~ s/(from_to\s+=&gt;\s+){{\@ARGV}}/$1 . '{@ARGV}'/e)
+  if ($s !~ s/(from_to\s+=&gt;\s+)\{\{\@ARGV}}/$1 . '{@ARGV}'/e)
     {
     print " EEE did not find from_to@ARGV in Makefile\n";
     } # if
-- 
2.1.4

</pre></body></html>