On Fri, 4 Nov 2022 22:44:11 GMT, Alisen Chung <ach...@openjdk.org> wrote:
> Updating LCMS to newest release You can eliminate whitespace issue by running the following script within native/liblcms folder. for f in *.c *.h; do # replace tabs with spaces expand ${f} > ${f}.tmp; mv ${f}.tmp $f; # fix line endings to LF sed -i -e 's/\r$//g' ${f}; # remove trailing spaces sed -i -e 's/[ ]* $//g' ${f}; done @alisenchung lcms.md file still seems to have whitespaces. You can use the above script just on the .md file to eliminate whitespaces error. ------------- Changes requested by honkar (Author). PR: https://git.openjdk.org/jdk/pull/11000