Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
CPAN Release 0.29
- Fix bug in some smokers. BinGOs++
  • Loading branch information
ingydotnet committed Dec 23, 2014
1 parent 9e1712a commit 2ec6faa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.0.176.
# This .travis.yml file generated by Zilla-Dist-0.0.177.
#
# To update it, run:
#
Expand Down
2 changes: 1 addition & 1 deletion About
Expand Up @@ -92,4 +92,4 @@ for up-to-date instructions.



# This file generated by Zilla-Dist-0.0.176
# This file generated by Zilla-Dist-0.0.177
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.29
date: Tue Dec 23 11:20:23 PST 2014
changes:
- Fix bug in some smokers. BinGOs++
---
version: 0.28
date: Mon Dec 22 15:22:46 PST 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.1

name: Inline-Module
version: 0.28
version: 0.29
abstract: Support for Inline-based CPAN Extension Modules
homepage: https://metacpan.org/release/Inline-Module

Expand Down
4 changes: 2 additions & 2 deletions lib/Inline/Module.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package Inline::Module;
our $VERSION = '0.28';
our $VERSION = '0.29';
our $API_VERSION = 'v2';

use Carp 'croak';
Expand All @@ -27,7 +27,7 @@ sub import {

my ($stub_module, $program) = caller;

if ($program eq 'Makefile.PL' && not -e 'INLINE.h') {
if ($program =~ m!\bMakefile.PL$! && not -e 'INLINE.h') {
$class->check_inc_inc($program);
no warnings 'once';
*MY::postamble = \&postamble;
Expand Down

0 comments on commit 2ec6faa

Please sign in to comment.