Re: RFR: 8258005: JDK build fails with incorrect fixpath script [v2]

2020-12-10 Thread Erik Joelsson
On Thu, 10 Dec 2020 13:11:47 GMT, Magnus Ihse Bursie wrote: >> The Leaning Toothpick Syndrome[1] strikes back! >> >> In the fixpath shell script wrapper, we transform single `` to `\`, to make >> them correctly escaped. Unfortunately, the bas variable substitution pattern >> I used were missin

Re: RFR: 8258005: JDK build fails with incorrect fixpath script [v2]

2020-12-10 Thread Magnus Ihse Bursie
> The Leaning Toothpick Syndrome[1] strikes back! > > In the fixpath shell script wrapper, we transform single `` to `\`, to make > them correctly escaped. Unfortunately, the bas variable substitution pattern > I used were missing a `/`, so it only replaced the first backslash, not all > of the

RFR: 8258005: JDK build fails with incorrect fixpath script

2020-12-10 Thread Magnus Ihse Bursie
The Leaning Toothpick Syndrome[1] strikes back! In the fixpath shell script wrapper, we transform single `` to `\`, to make them correctly escaped. Unfortunately, the bas variable substitution pattern I used were missing a `/`, so it only replaced the first backslash, not all of them. Thanks t