foxygit / doom Log in
commit 9ceedafc86215679974f69c9f75677e16952ea96
Author:     Simon Howard <fraggle@soulsphere.org>
AuthorDate: Sat Jun 25 08:07:57 2022 -0400
Commit:     Simon Howard <fraggle@soulsphere.org>
CommitDate: Sat Jun 25 08:07:57 2022 -0400

    `mkdir -p`, not `mkdir -f`.
---
 pkg/osx/GNUmakefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 7b0b2a00..1647954b 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -89,12 +89,12 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS) app.icns wadfile.icns
 	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