Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-12 Thread BALATON Zoltan
On Thu, 12 Jun 2025, Oleg Tolmatcev wrote: Am Do., 12. Juni 2025 um 21:35 Uhr schrieb Stefan Hajnoczi : On Sat, Jun 7, 2025 at 5:47 AM oltolm wrote: Sorry, I forgot to cc the maintainers. The build failed when run on Windows. I replaced calls to Unix programs like ´cat´, ´sed´ and ´true´ wi

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-12 Thread Oleg Tolmatcev
Am Do., 12. Juni 2025 um 21:35 Uhr schrieb Stefan Hajnoczi : > > On Sat, Jun 7, 2025 at 5:47 AM oltolm wrote: > > > > Sorry, I forgot to cc the maintainers. > > > > The build failed when run on Windows. I replaced calls to Unix programs > > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wr

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-12 Thread Stefan Hajnoczi
On Sat, Jun 7, 2025 at 5:47 AM oltolm wrote: > > Sorry, I forgot to cc the maintainers. > > The build failed when run on Windows. I replaced calls to Unix programs > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to > ´os.path.relpath´ in try-except because it can fail when t

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-11 Thread Stefan Hajnoczi
On Sat, Jun 07, 2025 at 11:45:04AM +0200, oltolm wrote: > Sorry, I forgot to cc the maintainers. > > The build failed when run on Windows. I replaced calls to Unix programs > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to > ´os.path.relpath´ in try-except because it can fa

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-10 Thread Pierrick Bouvier
On 6/8/25 1:23 AM, Oleg Tolmatcev wrote: Am So., 8. Juni 2025 um 02:43 Uhr schrieb Pierrick Bouvier : On 6/7/25 2:45 AM, oltolm wrote: Sorry, I forgot to cc the maintainers. The build failed when run on Windows. I replaced calls to Unix programs like ´cat´, ´sed´ and ´true´ with calls to ´pyt

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-08 Thread Oleg Tolmatcev
Am So., 8. Juni 2025 um 02:43 Uhr schrieb Pierrick Bouvier : > > On 6/7/25 2:45 AM, oltolm wrote: > > Sorry, I forgot to cc the maintainers. > > > > The build failed when run on Windows. I replaced calls to Unix programs > > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to >

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-08 Thread Oleg Tolmatcev
Am Sa., 7. Juni 2025 um 21:12 Uhr schrieb Stefan Hajnoczi : > > On Sat, Jun 07, 2025 at 11:45:04AM +0200, oltolm wrote: > > Sorry, I forgot to cc the maintainers. > > > > The build failed when run on Windows. I replaced calls to Unix programs > > like ´cat´, ´sed´ and ´true´ with calls to ´python´.

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-07 Thread Pierrick Bouvier
On 6/7/25 2:45 AM, oltolm wrote: Sorry, I forgot to cc the maintainers. The build failed when run on Windows. I replaced calls to Unix programs like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to ´os.path.relpath´ in try-except because it can fail when the two paths are on di

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-07 Thread Alex Bennée
oltolm writes: > Sorry, I forgot to cc the maintainers. > > The build failed when run on Windows. I replaced calls to Unix programs > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to > ´os.path.relpath´ in try-except because it can fail when the two paths > are on different

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-07 Thread Stefan Hajnoczi
On Sat, Jun 07, 2025 at 11:45:04AM +0200, oltolm wrote: > Sorry, I forgot to cc the maintainers. > > The build failed when run on Windows. I replaced calls to Unix programs > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to > ´os.path.relpath´ in try-except because it can fa

Re: [PATCH RESEND v3] meson: fix Windows build

2025-06-07 Thread Stefan Hajnoczi
On Sat, Jun 07, 2025 at 11:45:04AM +0200, oltolm wrote: > Sorry, I forgot to cc the maintainers. > > The build failed when run on Windows. I replaced calls to Unix programs > like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to > ´os.path.relpath´ in try-except because it can fa

[PATCH RESEND v3] meson: fix Windows build

2025-06-07 Thread oltolm
Sorry, I forgot to cc the maintainers. The build failed when run on Windows. I replaced calls to Unix programs like ´cat´, ´sed´ and ´true´ with calls to ´python´. I wrapped calls to ´os.path.relpath´ in try-except because it can fail when the two paths are on different drives. I made sure to conv