RFR: 8295369: Update LCMS to 2.14

Harshitha Onkar honkar at openjdk.org
Mon Nov 7 17:26:29 UTC 2022


On Fri, 4 Nov 2022 22:44:11 GMT, Alisen Chung <achung at 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



More information about the client-libs-dev mailing list