From: Konrad Rzeszutek Wilk Date: Mon, 15 Feb 2016 20:52:35 +0000 (-0500) Subject: Makefile: Don't erase everything in /usr/lib/debug/ X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5a796129302bf1c2c9aa3f5a3ae9f6fa75797d46;p=xentesttools%2Fbootstrap.git Makefile: Don't erase everything in /usr/lib/debug/ as xSplice payloads may be there. Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/root_image/Makefile b/root_image/Makefile index dc17465..d41f128 100644 --- a/root_image/Makefile +++ b/root_image/Makefile @@ -945,7 +945,7 @@ xend-install: yajl-depend xen-4.2-depend xen-python-bytecode # prune usr/include after copy rm -rf userspace/usr/include if [ -d userspace/usr/lib/debug ]; then \ - rm -rf userspace/usr/lib/debug; \ + rm -rf userspace/usr/lib/debug/xen*; \ fi ifeq ($(RPM_ARCH), x86_64) if ! test -f userspace/usr/lib64/xen; then \