[libvirt] [PATCH] Build breaker securityselinuxhelper.c

John Ferlan jferlan at redhat.com
Mon Jan 14 18:29:01 UTC 2013


Commit 907a39e7 missed adding the WITH_ATTR around #include <attr/xattr.h>
resulting in a build failure:

  CC     libsecurityselinuxhelper_la-securityselinuxhelper.lo
  securityselinuxhelper.c:27:24: fatal error: attr/xattr.h: No such file or directory
  compilation terminated.
  make[2]: *** [libsecurityselinuxhelper_la-securityselinuxhelper.lo] Error 1
  make[2]: Leaving directory `/home/jferlan/libvirt.work/tests'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/home/jferlan/libvirt.work'
  make: *** [all] Error 2

---
 tests/securityselinuxhelper.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/securityselinuxhelper.c b/tests/securityselinuxhelper.c
index daad7dd..206d936 100644
--- a/tests/securityselinuxhelper.c
+++ b/tests/securityselinuxhelper.c
@@ -24,7 +24,9 @@
 #include <string.h>
 #include <unistd.h>
 #include <errno.h>
+#if WITH_ATTR
 #include <attr/xattr.h>
+#endif
 
 
 /*
-- 
1.7.11.7




More information about the libvir-list mailing list