On 5 May 2013 01:31, Eric Bélanger <[email protected]> wrote:
> I'm in the process of fixing kdelibs3. I notice that optipng doesn't fix
> all png files. Some are still broken after running optipng on them. I still
> need to figure out how to fix them (maybe I need to use an optipng option).
> This is just a heads up.
I use the following in prepare():
find -name '*.png' -exec optipng -quiet -force -fix {} +
Without -force it might choose not to optimize (and thus fix) a file.
I'll add it to the todo description.