Skip to content

Commit

Permalink
CPAN Release 0.26
Browse files Browse the repository at this point in the history
- Patch to make Inline Modules build ok on MSWin32
  • Loading branch information
ingydotnet committed Dec 19, 2014
1 parent 6d6bf09 commit f035962
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.26
date: Thu Dec 18 18:04:08 PST 2014
changes:
- Patch to make Inline Modules build ok on MSWin32
---
version: 0.25
date: Thu Dec 18 11:13:47 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.25
version: 0.26
abstract: Support for Inline-based CPAN Extension Modules
homepage: https://metacpan.org/release/Inline-Module

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

use Config();
Expand Down Expand Up @@ -137,10 +137,10 @@ pure_all ::
...
for my $module (@$code_modules) {
$section .=
"\t\$(NOECHO) \$(ABSPERLRUN) -Iinc -Ilib -e 'use $module'\n";
"\t\$(NOECHO) \$(ABSPERLRUN) -Iinc -Ilib -M$module -e 1 --\n";
}
$section .=
"\t\$(NOECHO) \$(ABSPERLRUN) -Iinc -MInline::Module=fixblib -e 1";
"\t\$(NOECHO) \$(ABSPERLRUN) -Iinc -MInline::Module=fixblib -e 1 --\n";

return $section;
}
Expand Down

0 comments on commit f035962

Please sign in to comment.