diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-24 10:29:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-24 10:29:54 +0000 |
commit | 344462d3dde55465e709768c0d1dbfa2a8198aa5 (patch) | |
tree | 518a938ea16792c51ef2e8c5ae3c46dd92648cb4 | |
parent | c380484f921807e7089fef0177d59fe87df2f0ee (diff) | |
download | perl-344462d3dde55465e709768c0d1dbfa2a8198aa5.tar.gz |
two tweaks for clean build and test on Solaris
p4raw-id: //depot/perl@1877
-rw-r--r-- | op.c | 1 | ||||
-rwxr-xr-x | t/op/subst.t | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -131,6 +131,7 @@ pad_allocmy(char *name) for (off = AvFILLp(PL_comppad_name); off > PL_comppad_name_floor; off--) { if ((sv = svp[off]) && sv != &PL_sv_undef + && (SvIVX(sv) == 999999999 || SvIVX(sv) == 0) && strEQ(name, SvPVX(sv))) { warner(WARN_UNSAFE, diff --git a/t/op/subst.t b/t/op/subst.t index 81cafec75f..d224165b8f 100755 --- a/t/op/subst.t +++ b/t/op/subst.t @@ -1,5 +1,7 @@ #!./perl +BEGIN { @INC = ('../lib') } + print "1..71\n"; $x = 'foo'; |