27f0f96b28
X - Certificate and Key management This application is intended for creating and managing X.509 certificates, certificate requests, RSA, DSA and EC private keys, Smartcards and CRLs. Everything that is needed for a CA is implemented. All CAs can sign sub-CAs recursively. These certificate chains are shown clearly. For an easy company-wide use there are customiseable templates that can be used for certificate or request generation. All cryptographic data is stored in a SQL database. SQLite, MySQL (MariaDB) and PostgreSQL databases are supported.
17 lines
759 B
Text
17 lines
759 B
Text
$NetBSD: patch-Makefile,v 1.1 2019/08/13 02:39:45 brook Exp $
|
|
|
|
Remove needless otool commands.
|
|
|
|
--- Makefile.orig 2018-11-07 18:06:57.000000000 +0000
|
|
+++ Makefile
|
|
@@ -179,10 +179,7 @@ $(DMGSTAGE): xca$(SUFFIX)
|
|
$(MAKE) $(APPTARGET)
|
|
cp -r $(DMGSTAGE)/xca.app/Contents/Resources/*.html $(DMGSTAGE)/manual
|
|
ln -s xca.html $(DMGSTAGE)/manual/index.html
|
|
- otool -l $(DMGSTAGE)/xca.app/Contents/MacOS/xca | grep -e "chris\|Users" >&2
|
|
$(MACDEPLOYQT) $(DMGSTAGE)/xca.app
|
|
- rpath="`otool -l $(DMGSTAGE)/xca.app/Contents/MacOS/xca | grep -e "chris\|Users"`" && \
|
|
- if test -n "$$rpath"; then echo " ERROR $$rpath"; false; fi
|
|
-codesign --force --deep --signature-size=96000 -s "Christian Hohnstaedt" $(DMGSTAGE)/xca.app --timestamp
|
|
|
|
xca.dmg: $(MACTARGET).dmg
|