From 426f6eb2689a2b8ae5801b1ecd82f29830912495 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Tue, 19 Jul 2011 10:50:57 +0200 Subject: [PATCH] Remove an erroneous space from PL_bincompat_options for HAVE_INTERP_INTERN. This was inadvertently added as part of eba804b9d4475c6d, but only causes t/porting/bincompat.t to fail on those platforms that define HAVE_INTERP_INTERN. It's always the really subtle things that catch you out. --- perl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl.h b/perl.h index 7304e05..b107160 100644 --- a/perl.h +++ b/perl.h @@ -4636,7 +4636,7 @@ EXTCONST char PL_bincompat_options[] = " HAS_TIMES" # endif # ifdef HAVE_INTERP_INTERN - " HAVE_INTERP_INTERN" + " HAVE_INTERP_INTERN" # endif # ifdef MULTIPLICITY " MULTIPLICITY" -- 2.7.4