From dec50f469b1fd24064dbb069e9a9303f183a46d1 Mon Sep 17 00:00:00 2001 From: Oscar Andreasson Date: Mon, 24 Apr 2023 09:29:50 +0200 Subject: [PATCH] Fixed compilation issue ImageMagick has changed and phys was deprecated for a while, it's now called size and is given a single parameter. Signed-off-by: Oscar Andreasson --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7d8c8d1..85e6acc 100755 --- a/Makefile +++ b/Makefile @@ -172,10 +172,10 @@ images/%.jpg : images/%.gif convert -resize 50% images/$*.gif images/$*.jpg images/%.eps : images/%.gif - giftopnm images/$*.gif | pnmtopng -phys 11811 11811 1 | convert - images/$*.eps + giftopnm images/$*.gif | pnmtopng -size "11811 11811 1" | convert - images/$*.eps images/%.png : images/%.gif - giftopnm images/$*.gif | pnmtopng -phys 11811 11811 1 > images/$*.png + giftopnm images/$*.gif | pnmtopng -size "11811 11811 1" > images/$*.png .PHONY: clean clean: