From de765137d541c1223742658f1caf4effe85a8e59 Mon Sep 17 00:00:00 2001 From: Andrey Skvortsov Date: Sat, 29 Mar 2025 15:53:10 +0300 Subject: [PATCH] postprocess: remove unneeded FBDD enforcement for convert If convert is used with dcraw (instead of dcraw_emu), then dcraw reports error: 1: No such file or directory Convert doesn't use '$@' (-fbdd 1), so there is no reason to enforce it here. postprocess.sh already detects dcraw version (dcraw/dcraw_emu) and sets FBDD option. FBDD is supported only by dcraw_emu. Fixes: 8867b41a (Support graphicsmagick as alternative to imagemagick) --- data/postprocess.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/data/postprocess.sh b/data/postprocess.sh index 17aec66..effc04c 100755 --- a/data/postprocess.sh +++ b/data/postprocess.sh @@ -65,8 +65,6 @@ CONVERT="" if command -v "convert" > /dev/null then CONVERT="convert" - # -fbdd 1 Raw denoising with FBDD - set -- -fbdd 1 elif command -v "gm" > /dev/null then CONVERT="gm"