1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00

S2S-TLS: Fix "make check" in separate build directory

This commit is contained in:
Alexander Barton 2024-02-10 00:14:33 +01:00
parent 6b27eabf5b
commit b9d6a2f49c
2 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
cp ssl/cert-my-first-domain-tld.pem ssl/cert.pem
cp ssl/key-my-first-domain-tld.pem ssl/key.pem
cp ssl/dhparams-my-first-domain-tld.pem ssl/dhparams.pem
#!/bin/sh -e
mkdir -p ssl
cp "${srcdir}"/ssl/cert-my-first-domain-tld.pem ssl/cert.pem
cp "${srcdir}"/ssl/key-my-first-domain-tld.pem ssl/key.pem
cp "${srcdir}"/ssl/dhparams-my-first-domain-tld.pem ssl/dhparams.pem

View File

@ -1,5 +1,4 @@
#!/bin/sh
cp ssl/cert-my-second-domain-tld.pem ssl/cert.pem
cp ssl/key-my-second-domain-tld.pem ssl/key.pem
cp ssl/dhparams-my-second-domain-tld.pem ssl/dhparams.pem
# -eof-
#!/bin/sh -e
cp "${srcdir}"/ssl/cert-my-second-domain-tld.pem ssl/cert.pem
cp "${srcdir}"/ssl/key-my-second-domain-tld.pem ssl/key.pem
cp "${srcdir}"/ssl/dhparams-my-second-domain-tld.pem ssl/dhparams.pem