shithub: choc

Download patch

ref: 9ceedafc86215679974f69c9f75677e16952ea96
parent: a5dad4f7f57ef872469e9fa724ac2f4954f898f6
author: Simon Howard <fraggle@soulsphere.org>
date: Sat Jun 25 04:07:57 EDT 2022

`mkdir -p`, not `mkdir -f`.

--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -89,12 +89,12 @@
 	cp disk/background.png $(STAGING_DIR)/background.png
 
 app.icns: $(TOPLEVEL)/data/doom.png
-	mkdir -f app.iconset
+	mkdir -p app.iconset
 	sips -z 64 64 $< --out app.iconset/icon_32x32@2x.png
 	iconutil -c icns app.iconset
 
 wadfile.icns: $(TOPLEVEL)/data/wadfile.png
-	mkdir -f wadfile.iconset
+	mkdir -p wadfile.iconset
 	sips -z 64 64 $< --out wadfile.iconset/icon_32x32@2x.png
 	iconutil -c icns wadfile.iconset