From 03f75e380ff92993e86c343e2fd62eb3416f708b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= <lha@h5l.org>
Date: Sun, 16 Feb 2014 11:45:13 -0800
Subject: [PATCH] set CODE_SIGN_IDENTITY when building

---
 packages/mac/mac.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/packages/mac/mac.sh b/packages/mac/mac.sh
index e9129e2a1..d84557be2 100644
--- a/packages/mac/mac.sh
+++ b/packages/mac/mac.sh
@@ -24,8 +24,12 @@ env \
   CFLAGS="-arch i386 -arch x86_64" \
   LDFLAGS="-arch i386 -arch x86_64" \
   ${config} --disable-dependency-tracking > log || exit 1
+
 echo "Build"
+env \
+  CODE_SIGN_IDENTITY="Developer ID Application:" \
 make all > /dev/null || exit 1
+
 echo "Run regression suite"
 make check > /dev/null || exit 1
 echo "Install"