Re: [PATCH] GTM19-448: Fix script to work without realpath

2024-11-12 Thread Alex Bennée
Aleksandar Rakic writes: > The archive-source.sh script depends on realpath command, which was > introduced in coreutils-8.15. CentOS-6 build systems use coreutils-4.7, > which does not have realpath, so fix the script to use 'readlink -e' to > perform the same action. Isn't CentOS-6 outside of

Re: [PATCH] GTM19-448: Fix script to work without realpath

2024-11-12 Thread Richard Henderson
On 11/12/24 10:38, Aleksandar Rakic wrote: The archive-source.sh script depends on realpath command, which was introduced in coreutils-8.15. CentOS-6 build systems use coreutils-4.7, which does not have realpath, so fix the script to use 'readlink -e' to perform the same action. Centos 6 is not

[PATCH] GTM19-448: Fix script to work without realpath

2024-11-12 Thread Aleksandar Rakic
The archive-source.sh script depends on realpath command, which was introduced in coreutils-8.15. CentOS-6 build systems use coreutils-4.7, which does not have realpath, so fix the script to use 'readlink -e' to perform the same action. Cherry-picked 5d1d5766f0219ce2bec4e41c2467317df920ec0a and 80