|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 6 of 7] tools: call install-wrap with shell
# HG changeset patch
# User Olaf Hering <olaf@xxxxxxxxx>
# Date 1317738020 -7200
# Node ID c06758bea2f40cc5f9ef20d55e2e7e95d7ad3d63
# Parent bac6675e4d42e1f9074dc01267e859d15c2b84cd
tools: call install-wrap with shell
Removes the need for executable permissions in SCM.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
diff -r bac6675e4d42 -r c06758bea2f4 tools/Rules.mk
--- a/tools/Rules.mk
+++ b/tools/Rules.mk
@@ -78,7 +78,7 @@ check-$(CONFIG_X86) = $(call cc-ver-chec
_PYTHON_PATH := $(shell which $(PYTHON))
PYTHON_PATH ?= $(_PYTHON_PATH)
INSTALL_PYTHON_PROG = \
- $(XEN_ROOT)/tools/python/install-wrap "$(PYTHON_PATH)" $(INSTALL_PROG)
+ $(SHELL) $(XEN_ROOT)/tools/python/install-wrap "$(PYTHON_PATH)"
"$(INSTALL_PROG)"
%.opic: %.c
$(CC) $(CPPFLAGS) -DPIC $(CFLAGS) $(CFLAGS_$*.opic) -fPIC -c -o $@ $<
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|