646cd8897b
Updated block-dmmd script - fate#310510 - fix xenpaging restore changes to integrate paging into xm/xend xenpaging.autostart.patch xenpaging.doc.patch - bnc#787163 - VUL-0: CVE-2012-4544: xen: Domain builder Out-of- memory due to malicious kernel/ramdisk (XSA 25) CVE-2012-4544-xsa25.patch - bnc#779212 - VUL-0: CVE-2012-4411: XEN / qemu: guest administrator can access qemu monitor console (XSA-19) CVE-2012-4411-xsa19.patch - bnc#786516 - VUL-0: CVE-2012-4535: xen: Timer overflow DoS vulnerability CVE-2012-4535-xsa20.patch - bnc#786518 - VUL-0: CVE-2012-4536: xen: pirq range check DoS vulnerability CVE-2012-4536-xsa21.patch - bnc#786517 - VUL-0: CVE-2012-4537: xen: Memory mapping failure DoS vulnerability CVE-2012-4537-xsa22.patch - bnc#786519 - VUL-0: CVE-2012-4538: xen: Unhooking empty PAE entries DoS vulnerability CVE-2012-4538-xsa23.patch - bnc#786520 - VUL-0: CVE-2012-4539: xen: Grant table hypercall infinite loop DoS vulnerability CVE-2012-4539-xsa24.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=212
52 lines
1.9 KiB
Diff
52 lines
1.9 KiB
Diff
changeset: 26083:3fbeb019d522
|
|
user: Olaf Hering <olaf@aepfle.de>
|
|
date: Thu Oct 18 09:35:04 2012 +0100
|
|
files: tools/blktap/lib/Makefile
|
|
description:
|
|
blktap: fix rpmlint warning spurious-executable-perm
|
|
|
|
[ 1758s] xen-devel.x86_64: E: spurious-executable-perm (Badness: 50) /usr/lib64/libblktap.a
|
|
[ 1758s] The file is installed with executable permissions, but was identified as one
|
|
[ 1758s] that probably should not be executable. Verify if the executable bits are
|
|
[ 1758s] desired, and remove if not. NOTE: example scripts should be packaged under
|
|
[ 1758s] %docdir/examples, which will avoid this warning.
|
|
|
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
|
Acked-by: Ian Campbell <ian.campbell@citrix.com>
|
|
Committed-by: Ian Campbell <ian.campbell@citrix.com>
|
|
|
|
|
|
diff -r 8cf26ace9ca0 -r 3fbeb019d522 tools/blktap/lib/Makefile
|
|
--- a/tools/blktap/lib/Makefile Thu Oct 18 09:35:03 2012 +0100
|
|
+++ b/tools/blktap/lib/Makefile Thu Oct 18 09:35:04 2012 +0100
|
|
@@ -23,23 +23,25 @@ OBJS_PIC = $(SRCS:.c=.opic)
|
|
OBJS_PIC = $(SRCS:.c=.opic)
|
|
IBINS :=
|
|
|
|
-LIB = libblktap.a libblktap.so.$(MAJOR).$(MINOR)
|
|
+LIB = libblktap.a
|
|
+LIB_SO = libblktap.so.$(MAJOR).$(MINOR)
|
|
|
|
.PHONY: all
|
|
-all: $(LIB)
|
|
+all: $(LIB) $(LIB_SO)
|
|
|
|
.PHONY: install
|
|
install: all
|
|
$(INSTALL_DIR) $(DESTDIR)$(LIBDIR)
|
|
$(INSTALL_DIR) $(DESTDIR)$(INCLUDEDIR)
|
|
- $(INSTALL_PROG) $(LIB) $(DESTDIR)$(LIBDIR)
|
|
+ $(INSTALL_PROG) $(LIB_SO) $(DESTDIR)$(LIBDIR)
|
|
+ $(INSTALL_DATA) $(LIB) $(DESTDIR)$(LIBDIR)
|
|
ln -sf libblktap.so.$(MAJOR).$(MINOR) $(DESTDIR)$(LIBDIR)/libblktap.so.$(MAJOR)
|
|
ln -sf libblktap.so.$(MAJOR) $(DESTDIR)$(LIBDIR)/libblktap.so
|
|
$(INSTALL_DATA) blktaplib.h $(DESTDIR)$(INCLUDEDIR)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
- rm -rf *.a *.so* *.o *.opic *.rpm $(LIB) *~ $(DEPS) xen TAGS
|
|
+ rm -rf *.a *.so* *.o *.opic *.rpm $(LIB) $(LIB_SO) *~ $(DEPS) xen TAGS
|
|
|
|
libblktap.so.$(MAJOR).$(MINOR): $(OBJS_PIC)
|
|
$(CC) $(LDFLAGS) -Wl,$(SONAME_LDFLAG) -Wl,$(SONAME) $(SHLIB_LDFLAGS) \
|