From: Artur Bergman <sky@nanisky.com>
Date: Tue, 5 Feb 2002 13:49:40 +0000 (+0000)
Subject: Don't assume that we can chmod symlinks. It fails on MacOSX HFS+ when building using... 
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=235effa7b5c9fbd981ec8a3ce25cf49408967844;p=p5sagit%2Fp5-mst-13.2.git

Don't assume that we can chmod symlinks. It fails on MacOSX HFS+ when building using mksymlinks

p4raw-id: //depot/perl@14560
---

diff --git a/t/op/filetest.t b/t/op/filetest.t
index f757c79..fcded7a 100755
--- a/t/op/filetest.t
+++ b/t/op/filetest.t
@@ -37,6 +37,9 @@ print "# oldeuid = $oldeuid, euid = $>\n";
 
 if (!$Config{d_seteuid}) {
     print "ok 6 #skipped, no seteuid\n";
+} 
+elsif ($Config{config_args} =~/Dmksymlinks/) {
+    print "ok 6 #skipped, we cannot chmod symlinks\n";
 }
 elsif ($bad_chmod) {
     print "#[$@]\nok 6 #skipped\n";