From 0a122ccf1ef6e642cf5415b82ae9b51124151d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Thu, 18 May 2017 10:20:33 +0200 Subject: [PATCH] Fix building on Perl without "." in @INC https://github.com/bobtfish/text-markdown/issues/41 --- Makefile.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.PL b/Makefile.PL index 9c8f66f..89fd90d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,5 @@ # Load the Module::Install bundled in ./inc/ +BEGIN { push @INC, '.'; } use inc::Module::Install; # Define metadata