Re: RFR: 8336498: [macos] [build]: install-file macro may run into permission denied error

2024-07-18 Thread Lutz Schmidt
On Thu, 18 Jul 2024 14:16:21 GMT, Lutz Schmidt wrote: >> Looks trivial. Can you hint on how to reproduce the issue? E.g. for which >> file I should remove the user write permission to get the build failing? > > Thank you for the review, @RealCLanger ! > > Creating a reproducer is not

Re: RFR: 8336498: [macos] [build]: install-file macro may run into permission denied error

2024-07-18 Thread Jaikiran Pai
On Thu, 18 Jul 2024 14:16:21 GMT, Lutz Schmidt wrote: >> Looks trivial. Can you hint on how to reproduce the issue? E.g. for which >> file I should remove the user write permission to get the build failing? > > Thank you for the review, @RealCLanger ! > > Creating a reproducer is not

Re: RFR: 8336498: [macos] [build]: install-file macro may run into permission denied error

2024-07-18 Thread Lutz Schmidt
On Wed, 17 Jul 2024 20:35:04 GMT, Christoph Langer wrote: >> On MacOS, files may have extended attributes attached. These attributes are >> copied together with the files. To prevent issues during further processing, >> the extended attributes of the copies must be removed. This action was >>

Re: RFR: 8336498: [macos] [build]: install-file macro may run into permission denied error

2024-07-17 Thread Christoph Langer
On Tue, 16 Jul 2024 20:50:32 GMT, Lutz Schmidt wrote: > On MacOS, files may have extended attributes attached. These attributes are > copied together with the files. To prevent issues during further processing, > the extended attributes of the copies must be removed. This action was >

RFR: 8336498: [macos] [build]: install-file macro may run into permission denied error

2024-07-16 Thread Lutz Schmidt
On MacOS, files may have extended attributes attached. These attributes are copied together with the files. To prevent issues during further processing, the extended attributes of the copies must be removed. This action was implemented as solution of an older bug. The solution is incomplete