[exim-cvs] Adjust test build link paths.

Top Pagina
Delete this message
Reply to this message
Auteur: Exim Git Commits Mailing List
Datum:  
Aan: exim-cvs
Onderwerp: [exim-cvs] Adjust test build link paths.
Gitweb: http://git.exim.org/exim.git/commitdiff/0b7343d7d0c6698624ebe44e357b25e8f8d6314e
Commit:     0b7343d7d0c6698624ebe44e357b25e8f8d6314e
Parent:     970ba64f07bf5523c7098235664f2ce02962a128
Author:     Todd Lyons <tlyons@???>
AuthorDate: Mon Sep 30 10:52:50 2013 -0700
Committer:  Todd Lyons <tlyons@???>
CommitDate: Mon Sep 30 10:54:56 2013 -0700


    Adjust test build link paths.


    Details at: http://comments.gmane.org/gmane.mail.exim.user/91154
    Add ignore for a logfile from test run.
---
 test/.gitignore  |    1 +
 test/Makefile.in |    4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/test/.gitignore b/test/.gitignore
index c24bb89..5708871 100644
--- a/test/.gitignore
+++ b/test/.gitignore
@@ -9,3 +9,4 @@ eximdir/
 Makefile
 spool/
 test-*
+failed-summary.log
diff --git a/test/Makefile.in b/test/Makefile.in
index 3c12f36..fda4d5f 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -49,12 +49,12 @@ bin/client:     src/client.c Makefile
         @echo " "


 bin/client-gnutls: src/client.c Makefile
-        $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -lgnutls -lgcrypt -o bin/client-gnutls src/client.c
+        $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -o bin/client-gnutls src/client.c -lgnutls -lgcrypt
         @echo ">>> bin/client-gnutls command built"
         @echo " "


 bin/client-ssl: src/client.c Makefile
-        $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -lssl -lcrypto -o bin/client-ssl src/client.c
+        $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -o bin/client-ssl src/client.c -lssl -lcrypto
         @echo ">>> bin/client-ssl command built"
         @echo " "