Skip to content

Commit

Permalink
libcacard: Don't link with all libraries QEMU links to
Browse files Browse the repository at this point in the history
As described in https://bugzilla.redhat.com/show_bug.cgi?id=987441 ,
libcacard currently links to all the libraries QEMU is linking to,
including glusterfs libraries, libiscsi, ... libcacard does not need all of
these. This patch ensures it's only linked with the libraries it needs.

Signed-off-by: Christophe Fergeau <cfergeau@redhat.com>
Signed-off-by: Alon Levy <alevy@redhat.com>
  • Loading branch information
cfergeau authored and Alon Levy committed Feb 9, 2014
1 parent 1f6b12f commit 73db416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcacard/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ vscclient$(EXESUF): libcacard/vscclient.o libcacard.la

libcacard.la: LDFLAGS += -rpath $(libdir) -no-undefined \
-export-syms $(SRC_PATH)/libcacard/libcacard.syms
libcacard.la: LIBS += $(libcacard_libs)
libcacard.la: LIBS = $(libcacard_libs)
libcacard.la: $(libcacard-lobj-y)
$(call LINK,$^)

Expand Down

0 comments on commit 73db416

Please sign in to comment.