From: Graham Knop <haarg@haarg.org>
Date: Mon, 19 Oct 2015 04:12:57 +0000 (-0400)
Subject: include ExtUtils::HasCompiler in dist as intended
X-Git-Tag: v0.30~2
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4ae4bd680ce54f13382324bc268361d17c3503f1;p=gitmo%2FClass-C3.git

include ExtUtils::HasCompiler in dist as intended
---

diff --git a/Changes b/Changes
index 07dd228..24145ae 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Class::C3.
 
+    - include ExtUtils::HasCompiler in dist as intended so it doesn't need to
+      be installed
+
 0.29 - 2015-10-18
     - Update compiler detection to use ExtUtils::HasCompiler
 
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
index d573dd7..e82f983 100644
--- a/maint/Makefile.PL.include
+++ b/maint/Makefile.PL.include
@@ -7,5 +7,6 @@ use ExtUtils::MakeMaker 6.57_10 ();
 author 'Stevan Little, <stevan@iinteractive.com>';
 
 manifest_include opt => '.pm';
+manifest_include inc => '.pm';
 
 1;