From 535b7f260ba18bd61feb689810a35f849e921ecf Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Sun, 6 Jan 2013 21:03:59 +0100 Subject: [PATCH] link the binaries correctly with ykpers and libyubikey fixes where the binaries only got built static --- Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index a6f6290..a42fa8b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # Written by Richard Levitte . -# Copyright (c) 2008-2012 Yubico AB +# Copyright (c) 2008-2013 Yubico AB # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -67,13 +67,13 @@ endif bin_PROGRAMS = ykpersonalize ykchalresp ykinfo ykpersonalize_SOURCES = ykpersonalize.c ykpers-args.h ykpers-args.c -ykpersonalize_LDADD = ./libykpers-1.la ./ykcore/libykcore.la +ykpersonalize_LDADD = ./libykpers-1.la $(LTLIBYUBIKEY) ykchalresp_SOURCES = ykchalresp.c -ykchalresp_LDADD = ./ykcore/libykcore.la +ykchalresp_LDADD = ./libykpers-1.la $(LTLIBYUBIKEY) ykinfo_SOURCES = ykinfo.c -ykinfo_LDADD = ./ykcore/libykcore.la +ykinfo_LDADD = ./libykpers-1.la $(LTLIBYUBIKEY) dist_man1_MANS = ykpersonalize.1 ykchalresp.1 ykinfo.1 -- 2.39.5