[PATCH] Allow users to choose identity used to sign tools.

Charles Davis cdavis5x at gmail.com
Mon Apr 15 21:04:11 PDT 2013



================
Comment at: Makefile.rules:1518
@@ -1517,1 +1517,3 @@
 ifdef CODESIGN_TOOLS
+TOOL_CODESIGN_IDENTITY ?= -
+
----------------
I meant that, when you renamed the variable here...

================
Comment at: Makefile.rules:1527
@@ -1524,3 +1526,3 @@
 	$(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
-	$(Verb) codesign -s - $@
+	$(Verb) codesign -s $(CODESIGN_IDENTITY) $@
 else
----------------
...you forgot to change it here, too. Sorry if I wasn't clear about that earlier.


http://llvm-reviews.chandlerc.com/D632



More information about the llvm-commits mailing list