From b5b8a6db69ba16a8225962bf7659b6ff6756bc18 Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Fri, 7 May 2010 17:52:37 +0200 Subject: [PATCH] Fix pthread related link error for virt-aa-helper Link virt-aa-helper explicitly with pthread. This is at least required on Ubuntu 10.04. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 20252081cf..0da30bbe6e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1002,7 +1002,7 @@ libexec_PROGRAMS += virt-aa-helper virt_aa_helper_SOURCES = $(SECURITY_DRIVER_APPARMOR_HELPER_SOURCES) -virt_aa_helper_LDFLAGS = $(WARN_CFLAGS) +virt_aa_helper_LDFLAGS = $(WARN_CFLAGS) $(LIB_PTHREAD) virt_aa_helper_LDADD = \ $(WARN_CFLAGS) \ $(LIBXML_LIBS) \