Comment 9 for bug 1324112

Revision history for this message
Peter Maydell (pmaydell) wrote : Re: [Qemu-devel] [Bug 1324112] [NEW] qemu parallel building error on libcacard.la

On 9 July 2014 08:49, Stefan Hajnoczi <email address hidden> wrote:
> On Tue, Jun 10, 2014 at 04:35:36PM -0000, tal zilcer wrote:
>> The following patch solved the issue for me:
>> --- a/qemu/libcacard/Makefile
>> +++ b/qemu/libcacard/Makefile
>> @@ -26,8 +26,8 @@ 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: $(libcacard-lobj-y)
>> - $(call LINK,$^)
>> +libcacard.la: $(libcacard-obj-y)
>> + $(call LINK,$(libcacard-lobj-y))
>>
>> libcacard.pc: $(SRC_PATH)/libcacard/libcacard.pc.in
>> $(call quiet-command,sed -e 's|@LIBDIR@|$(libdir)|' \
>
> Peter, any thoughts on this Makefile issue?

Not particularly; I've never looked at the libtool stuff because
I have a strong dislike of libtool... It seems a bug worth
fixing for 2.1 if you think the fix is correct.

-- PMM