Browse Source

Fix Images Makefile for MacOS Compatibility (again)

pull/596/head
Wayne Warthen 7 months ago
parent
commit
edfb568c82
No known key found for this signature in database GPG Key ID: 8B34ED29C07EEB0A
  1. 2
      Source/Images/Makefile

2
Source/Images/Makefile

@ -121,7 +121,7 @@ blankhd1k:
$(BINDIR)/mkfs.cpm -f $$fmt -b $$SysImage $@ ; \ $(BINDIR)/mkfs.cpm -f $$fmt -b $$SysImage $@ ; \
fi ; \ fi ; \
if [ "$$Label" ] ; then \ if [ "$$Label" ] ; then \
Label=`expr substr "$$Label" 1 16` ; \
Label=`echo "$$Label" | awk '{ print substr($$0, 1, 16) }'` ; \
echo "Label: \"$$Label\"" ; \ echo "Label: \"$$Label\"" ; \
echo -n "\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$\$$" | dd conv=notrunc status=none bs=1 seek=1511 of=$@ ; \ 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 -n "$$Label" | dd conv=notrunc status=none bs=1 seek=1511 of=$@; \

Loading…
Cancel
Save