From 37681e80eca50503590b40dc24de20fbc9201774 Mon Sep 17 00:00:00 2001 From: Sveinbjorn Thordarson Date: Sat, 22 Oct 2022 18:18:24 +0000 Subject: [PATCH] Fixed build system --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 3d53fa7..12a0028 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ all: build build: mkdir -p products + xattr -w com.apple.xcode.CreatedByBuildSystem true products xcodebuild -parallelizeTargets \ -project "FastDMG.xcodeproj" \ -target "FastDMG" \ @@ -16,5 +17,6 @@ build: @stat -f %z products/FastDMG.app/Contents/MacOS/* clean: + xattr -w com.apple.xcode.CreatedByBuildSystem true products xcodebuild -project "FastDMG.xcodeproj" clean rm -rf products/* 2> /dev/null