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

2005-10-15 Thread Joshua Hoblitt via RT
> [nickg - Mon Oct 10 12:11:00 2005]: > > 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 yo

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

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

2005-10-09 Thread Joshua Hoblitt via RT
[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' certainly would encompass non-POSIX systems. Are you >planning on retool this patch

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

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

2005-06-03 Thread via RT
# New Ticket Created by Nick Glencross # Please include the string: [perl #36119] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=36119 > Folks, this small patch fixes a current problem with loading dynclasses on HP-UX. T