提交 0940208b 编写于 作者: J Julio Faracco 提交者: Cole Robinson

tests: Add SELINUX_LIBS to fix viridentitytest linker bug

In a clean build system (Ubuntu 14.04), the viridentitytest failed to compile.
Even if all the SELINUX libraries and depedencies are installed. See the error
message below:

[...]
  CC       viridentitytest.o
  CCLD     viridentitytest
/usr/bin/ld: viridentitytest.o: undefined reference to symbol
                                                       'security_disable'
//lib/x86_64-linux-gnu/libselinux.so.1: error adding symbols: DSO missing
                                                           from command line
collect2: error: ld returned 1 exit status
make: *** [viridentitytest] Error 1

Simply adding the variable SELINUX_LIBS in viridentitytest rules of
Makefile.am to include SELINUX libraries into viridentitytest solved that
compilation issue.
Signed-off-by: NJulio Faracco <jcfaracco@gmail.com>
Signed-off-by: NEric Blake <eblake@redhat.com>
(cherry picked from commit f2a2d0e9)
上级 a70d93e2
...@@ -927,6 +927,7 @@ viridentitytest_SOURCES = \ ...@@ -927,6 +927,7 @@ viridentitytest_SOURCES = \
viridentitytest.c testutils.h testutils.c viridentitytest.c testutils.h testutils.c
viridentitytest_LDADD = $(LDADDS) viridentitytest_LDADD = $(LDADDS)
if WITH_SELINUX if WITH_SELINUX
viridentitytest_LDADD += $(SELINUX_LIBS)
viridentitytest_DEPENDENCIES = libsecurityselinuxhelper.la \ viridentitytest_DEPENDENCIES = libsecurityselinuxhelper.la \
../src/libvirt.la ../src/libvirt.la
endif WITH_SELINUX endif WITH_SELINUX
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册