diff options
author | Alon Levy <alevy@redhat.com> | 2012-11-26 15:43:06 +0200 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2012-11-28 11:14:50 +0200 |
commit | c81d1865ae2619eddf576474b929875a93228dc7 (patch) | |
tree | 77adf1943d639c26b231f3f4d1db106ea297d55e | |
parent | e770907683ff449ab5269f4e0773eb7441affdbf (diff) |
libcacard: fix missing symbol in libcacard.solibcacard.1libcacard
Before patch:
$ make libcacard.la
$ nm ./libcacard/.libs/libcacard.so.0.0.0 | grep " U " | \
egrep -v "(g_)|(GLIBC)|(SECMOD)|(PK11)|(CERT)|(NSS)|(PORT)|(PR)"
U error_set
Signed-off-by: Alon Levy <alevy@redhat.com>
-rw-r--r-- | libcacard/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcacard/Makefile b/libcacard/Makefile index 25bc4a020..7bce286ad 100644 --- a/libcacard/Makefile +++ b/libcacard/Makefile @@ -7,7 +7,7 @@ libcacard_includedir=$(includedir)/cacard $(call set-vpath, $(SRC_PATH)) # objects linked into a shared library, built with libtool with -fPIC if required -QEMU_OBJS=$(oslib-obj-y) qemu-timer-common.o $(trace-obj-y) $(stub-obj-y) +QEMU_OBJS=$(oslib-obj-y) qemu-timer-common.o error.o $(trace-obj-y) $(stub-obj-y) QEMU_OBJS_LIB=$(patsubst %.o,%.lo,$(QEMU_OBJS)) QEMU_CFLAGS+=-I../ |