From 5148b8bcaf6ff96b38267c4989f10c82dfeba5d8 Mon Sep 17 00:00:00 2001 From: Craig DeForest Date: Fri, 10 Apr 2015 13:16:49 -0600 Subject: [PATCH] minimalist inline pdlpp fix --- Basic/Gen/Inline/Pdlpp.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Basic/Gen/Inline/Pdlpp.pm b/Basic/Gen/Inline/Pdlpp.pm index f891a7b03..1fb93f3f5 100644 --- a/Basic/Gen/Inline/Pdlpp.pm +++ b/Basic/Gen/Inline/Pdlpp.pm @@ -29,8 +29,8 @@ sub validate { my $o = shift; $o->{ILSM} ||= {}; $o->{ILSM}{XS} ||= {}; - # having internal on shouldn't matter - $o->{ILSM}{INTERNAL} = 1 unless defined $o->{ILSM}{INTERNAL}; + # Shouldn't use internal linking for Inline stuff, normally + $o->{ILSM}{INTERNAL} = 0 unless defined $o->{ILSM}{INTERNAL}; $o->{ILSM}{MAKEFILE} ||= {}; if (not $o->UNTAINT) { my $w = abs_path(PDL::Core::Dev::whereami_any());