diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-01-17 12:39:50 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-01-17 14:55:13 +0100 |
commit | 90957cd9d9681cc0a28f83f73ecfbe8811580df4 (patch) | |
tree | 219ad43fbb4b819e446592f99399b7a19ca36a13 | |
parent | 3cda204626decc728b6bc0c74ccc25fd94e631d9 (diff) | |
download | VeraCrypt-90957cd9d9681cc0a28f83f73ecfbe8811580df4.tar.gz VeraCrypt-90957cd9d9681cc0a28f83f73ecfbe8811580df4.zip |
MacOSX: Ensure that time-stamping is always activated when performing code signing by using --timestamp switch.
-rw-r--r-- | src/Main/Main.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make index 4140f552..62a7ab32 100644 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -174,9 +174,9 @@ endif echo -n APPLTRUE >$(APPNAME).app/Contents/PkgInfo sed -e 's/_VERSION_/$(patsubst %a,%.1,$(patsubst %b,%.2,$(TC_VERSION)))/' ../Build/Resources/MacOSX/Info.plist.xml >$(APPNAME).app/Contents/Info.plist - codesign -s "Developer ID Application: Mounir IDRASSI" $(APPNAME).app + codesign -s "Developer ID Application: Mounir IDRASSI" --timestamp $(APPNAME).app /usr/local/bin/packagesbuild $(PWD)/Setup/MacOSX/veracrypt.pkgproj - productsign --sign "Developer ID Installer: Mounir IDRASSI" "$(PWD)/Setup/MacOSX/VeraCrypt $(TC_VERSION).pkg" $(PWD)/Setup/MacOSX/VeraCrypt_$(TC_VERSION).pkg + productsign --sign "Developer ID Installer: Mounir IDRASSI" --timestamp "$(PWD)/Setup/MacOSX/VeraCrypt $(TC_VERSION).pkg" $(PWD)/Setup/MacOSX/VeraCrypt_$(TC_VERSION).pkg rm -f $(APPNAME)_$(TC_VERSION).dmg rm -f "$(PWD)/Setup/MacOSX/template.dmg" rm -fr "$(PWD)/Setup/MacOSX/VeraCrypt_dmg" |