From 5a70c0bd3854e82394d84a03963b3ffa4d0be220 Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Thu, 17 Jul 2025 16:51:47 -0700 Subject: [PATCH] Fix Images Makefile for MacOS Compatibility (again) --- Source/Images/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Images/Makefile b/Source/Images/Makefile index beb9558c..24fbfd7e 100644 --- a/Source/Images/Makefile +++ b/Source/Images/Makefile @@ -123,8 +123,8 @@ blankhd1k: if [ "$$Label" ] ; then \ Label=`echo "$$Label" | awk '{ print substr($$0, 1, 16) }'` ; \ echo "Label: \"$$Label\"" ; \ - echo -n "\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$" | dd conv=notrunc status=none bs=1 seek=1511 of=$@ ; \ - echo -n "$$Label" | dd conv=notrunc status=none bs=1 seek=1511 of=$@; \ + echo "\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$" | tr -d '\n' | dd conv=notrunc status=none bs=1 seek=1511 of=$@ ; \ + echo "$$Label" | tr -d '\n' | dd conv=notrunc status=none bs=1 seek=1511 of=$@; \ fi ; \ for u in $$(seq 0 15) ; do \ dir=d_$$d/u$$u ; \