Re: [perl #36119] [PATCH] Reapply execute permissions on dynclasses for HP-UX

2005-10-10 Thread Nick Glencross
Joshua Hoblitt via RT wrote: As a general comment, 36119 makes me a little nervous as 'chmod' isn't something you can count on unless your on a POSIX like system and osname ne 'MSWin32' certainly would encompass non-POSIX systems. Are you planning on retool this patch to be more pedantic about

Re: [perl #36119] [PATCH] Reapply execute permissions on dynclasses for HP-UX

2005-10-10 Thread Nick Glencross
Joshua Hoblitt via RT wrote: -copy("$_$LOAD_EXT", $dest) or die "Copy $_$LOAD_EXT failed ($?)\n"; +File::Copy::syscopy("$_$LOAD_EXT", $dest) or die "Copy $_$LOAD_EXT failed ($?)\n"; Certainly on cygwin File::Copy::syscopy also seems to lose execute permissions, despite what th

Re: [perl #36119] [PATCH] Reapply execute permissions on dynclasses for HP-UX

2005-10-09 Thread Joshua Hoblitt
On Sun, Oct 09, 2005 at 01:31:54PM -0700, Joshua Hoblitt via RT wrote: > [cut from a off list thread between jhoblitt & nickg] > > >As a general comment, 36119 makes me a little nervous as 'chmod' isn't > >something you can count on unless your on a POSIX like system and osname > >ne 'MSWin32' cer

Re: [perl #36119] [PATCH] Reapply execute permissions on dynclasses for HP-UX

2005-06-05 Thread Nick Glencross
Leopold Toetsch wrote: Nick Glencross (via RT) wrote: +if ($^O ne 'MSWin32') { I'd much more prefer one of: a) if $^O eq 'hpux' b) fix the "copy" to preserve perms Anyway, as hpux is still broken in several other places, I'll drop a note in PLATFORMS and not apply the patch now.

Re: [perl #36119] [PATCH] Reapply execute permissions on dynclasses for HP-UX

2005-06-04 Thread Leopold Toetsch
Nick Glencross (via RT) wrote: +if ($^O ne 'MSWin32') { I'd much more prefer one of: a) if $^O eq 'hpux' b) fix the "copy" to preserve perms Anyway, as hpux is still broken in several other places, I'll drop a note in PLATFORMS and not apply the patch now. leo