aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir@xensource.com>2007-10-23 13:47:01 +0100
committerKeir Fraser <keir@xensource.com>2007-10-23 13:47:01 +0100
commiteab576f8d60b834e34f5fe9beed90d2cd09b9fd5 (patch)
treee1df13d042fd16bad80ab489995ade8f67778503 /xen/include/Makefile
parentf767bbd02828f67d86c2f42d791d5a0c56295c15 (diff)
downloadxen-eab576f8d60b834e34f5fe9beed90d2cd09b9fd5.tar.gz
xen-eab576f8d60b834e34f5fe9beed90d2cd09b9fd5.tar.bz2
xen-eab576f8d60b834e34f5fe9beed90d2cd09b9fd5.zip
Use $(SHELL) to find shell to run get-fields.sh script.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/Makefile')
-rw-r--r--xen/include/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/Makefile b/xen/include/Makefile
index 2d0d810469..64c87f6722 100644
--- a/xen/include/Makefile
+++ b/xen/include/Makefile
@@ -61,7 +61,7 @@ compat/%.c: public/%.h xlat.lst Makefile
compat/xlat.h: xlat.lst $(filter-out compat/xlat.h,$(headers-y)) $(BASEDIR)/tools/get-fields.sh Makefile
grep -v '^[ ]*#' xlat.lst | \
while read what name hdr; do \
- /bin/sh $(BASEDIR)/tools/get-fields.sh "$$what" compat_$$name $$(echo compat/$$hdr | sed 's,@arch@,$(compat-arch-y),g') || exit $$?; \
+ $(SHELL) $(BASEDIR)/tools/get-fields.sh "$$what" compat_$$name $$(echo compat/$$hdr | sed 's,@arch@,$(compat-arch-y),g') || exit $$?; \
done >$@.new
mv -f $@.new $@