diff options
author | Björn Mattsson <bjorn@sunet.se> | 2021-05-19 12:23:53 +0200 |
---|---|---|
committer | Björn Mattsson <bjorn@sunet.se> | 2021-05-19 12:23:53 +0200 |
commit | ae08455b815260bf2c4d4b19e374b00b47d19f05 (patch) | |
tree | 55c9924198d7febb1707cb332e1ed3fefe7ea292 /Makefile | |
parent | 2ea19404edc60f657de96b1a82f92dbe415372da (diff) |
Updated Makefile and xslt/add-rpi.xsl to get registrationInstant added on new files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -107,7 +107,7 @@ clean: @rm -f *.xml *.tbs *.n *.sig tidy: - @for x in `find $(SRCDIRS) -name \*.xml`; do xsltproc xslt/add-rpi.xsl $$x > $$x.c && mv $$x.c $$x; done + @for x in `find $(SRCDIRS) -name \*.xml`; do xsltproc --stringparam regDate $(NOW) xslt/add-rpi.xsl $$x > $$x.c && mv $$x.c $$x; done @for x in `find $(SRCDIRS) -name \*.xml`; do xsltproc xslt/clean-entitydescriptor.xsl $$x > $$x.c && mv $$x.c $$x; done testMetadataUsage: @@ -286,7 +286,7 @@ test2: $(SWAMIDXML) schematest testEntCat testSimpleSign testALlevel testEduGAIN @xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $< 2>&1 @# make tidy - @xsltproc xslt/add-rpi.xsl $< > $<.c && mv $<.c $< + @xsltproc --stringparam regDate $(NOW) xslt/add-rpi.xsl $< > $<.c && mv $<.c $< @xsltproc xslt/clean-entitydescriptor.xsl $< > $<.c && mv $<.c $< @# make testMDUI |