From dd8e7668016c546014cfef6fd508a687c91e6379 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tomasz=20Goli=C5=84ski=C2=A0?= <> Date: Sat, 21 Jan 2023 16:32:38 +0000 Subject: [PATCH] Fix #1002: New build-dependency xxd xxdi.pl doesn't accept output file as a second parameter and needs a redirect >. Since vim xxd in case of no second parameter uses stdout by default, it is safe to add a redirect in any case. --- scripts/generate-ClayRGB1998-icc-h.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-ClayRGB1998-icc-h.sh b/scripts/generate-ClayRGB1998-icc-h.sh index 3f5d977a..73ab2b78 100755 --- a/scripts/generate-ClayRGB1998-icc-h.sh +++ b/scripts/generate-ClayRGB1998-icc-h.sh @@ -20,4 +20,4 @@ build_dir="$PWD" cd "$(dirname "$1")" || return 1 -${XXD} "$(basename "$1")" "$build_dir/$2" +${XXD} "$(basename "$1")" > "$build_dir/$2" -- 2.20.1