<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 097178e4560757d87b6262edda0b0ef9da45a4e0 Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Fri, 10 Jun 2016 08:11:08 +0200
Subject: [PATCH] fix "Unescaped left brace in regex is illegal in regex" (RT
 #114735)

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

diff --git a/Makefile.PL b/Makefile.PL
index 1d1c7a0..4bb3965 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -116,11 +116,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>