diff options
author | Leif Johansson <leifj@sunet.se> | 2016-11-15 08:18:41 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2016-11-15 08:18:41 +0100 |
commit | b3365e32e97b5ddfbfc5ffd682d3cb6431a1a1fb (patch) | |
tree | ca83961e1f52061f2455c7b6c01c2a5807125e96 /Makefile | |
parent | 4f3af1579a9c62fb2a79150568d67f63095aac44 (diff) |
better name
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,6 +16,7 @@ TRANSFORM=xslt/normalize.xsl ID=$(shell perl scripts/unique_id.pl) XSLTDEFS := --stringparam org $(ORG) --stringparam ID $(ID) --stringparam tou $(TOU) --stringparam rpi $(RPI) --stringparam defaultContact $(CONTACTS) --stringparam date $(DATE) --stringparam now $(NOW) SIGNER := xmlsec1 --sign --privkey-pem $(KEY),$(CERT) --pwd $(PASS) --id-attr:ID urn:oasis:names:tc:SAML:2.0:metadata:EntitiesDescriptor +BASEURL := "http://md.swamid.se/md/" -include $(SWAMID_MK_CONFIG) @@ -26,7 +27,7 @@ MXML=$(shell echo *.mxml) sign: swamid upstream projects %.sig: %.mxml - xsltproc $(XSLTDEFS) --stringparam target "http://md.swamid.se/md/$*.xml" --xinclude $(TRANSFORM) $< > $*.n + xsltproc $(XSLTDEFS) --stringparam target "$(BASEURL)/$*.xml" --xinclude $(TRANSFORM) $< > $*.n xsltproc $(XSLTDEFS) --xinclude xslt/sign.xsl $*.n > $*.tbs $(SIGNER) --output $@ $*.tbs xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $@ |