diff options
-rw-r--r-- | ext/ByteLoader/Makefile.PL | 1 | ||||
-rwxr-xr-x | t/op/filetest.t | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ext/ByteLoader/Makefile.PL b/ext/ByteLoader/Makefile.PL index 1facb5a068..c3cfcc7c2f 100644 --- a/ext/ByteLoader/Makefile.PL +++ b/ext/ByteLoader/Makefile.PL @@ -4,5 +4,6 @@ WriteMakefile( NAME => 'ByteLoader', VERSION_FROM => 'ByteLoader.pm', XSPROTOARG => '-noprototypes', + MAN3PODS => {}, # Pods will be built by installman. OBJECT => 'byterun$(OBJ_EXT) ByteLoader$(OBJ_EXT)', ); diff --git a/t/op/filetest.t b/t/op/filetest.t index d03ff75b04..66eaa3933d 100755 --- a/t/op/filetest.t +++ b/t/op/filetest.t @@ -3,7 +3,6 @@ # There are few filetest operators that are portable enough to test. # See pod/perlport.pod for details. -use Config; BEGIN { chdir 't' if -d 't'; unshift @INC, '../lib' if -d '../lib'; @@ -36,7 +35,10 @@ eval '$> = 1'; # so switch uid (may not be implemented) print "# oldeuid = $oldeuid, euid = $>\n"; -if ($bad_chmod) { +if (!$Config{d_seteuid}) { + print "ok 6 #skipped, no seteuid\n"; +} +elsif ($bad_chmod) { print "#[$@]\nok 6 #skipped\n"; } else { |