diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-03-10 22:40:27 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-03-10 22:40:27 +0000 |
commit | 1935b47f7c6dfadfb9146b220a62c037b0f4f75c (patch) | |
tree | 1c0156296c4708084070002eb778d2d13e30f966 /test | |
parent | 4ca005cdf526b0c6803c29a154bd85dc112bc6a3 (diff) |
Testsuite: fix build on non-gnumake platforms
Broken-by: effbc122d
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 6a9603cf3..9984ee43f 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -59,7 +59,7 @@ bin/client-ssl: $(SRC)/client.c Makefile $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -o bin/client-ssl $(SRC)/client.c -lssl -lcrypto $(LIBS) $(CLIENT_ANYTLS): $(CLIENT_GNUTLS) $(CLIENT_OPENSSL) - ln -sf `basename $<` $@ + [ -n "$(CLIENT_GNUTLS)" ] && ln -sf $(CLIENT_GNUTLS) $@ || ln -sf $(CLIENT_OPENSSL) $@ bin/checkaccess:$(SRC)/checkaccess.c Makefile $(CC) $(CFLAGS) -DNO_TLS $(LDFLAGS) -o bin/checkaccess $(SRC)/checkaccess.c |