From: Roger Pau Monne Date: Thu, 24 Mar 2016 17:05:13 +0000 (+0100) Subject: tools/build: remove usage of sed -i X-Git-Tag: 4.7.0-rc1~317 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0d42d461c21685258ac9c17bec7eaeb9ac2fce4c;p=xen.git tools/build: remove usage of sed -i The "-i" sed option is not POSIX compatible [0], remove it's usage and instead create yet another temporary intermediate file. [0] http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html Signed-off-by: Roger Pau Monné Cc: Ian Jackson Cc: Wei Liu Reviewed-by: Andrew Cooper --- diff --git a/tools/include/xen-foreign/Makefile b/tools/include/xen-foreign/Makefile index bb09c93915..270a9752ca 100644 --- a/tools/include/xen-foreign/Makefile +++ b/tools/include/xen-foreign/Makefile @@ -36,8 +36,9 @@ x86_32.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_32.h $(ROOT)/arch-x86/ x86_64.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_64.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h $(PYTHON) $< $* $@.tmp $(filter %.h,$^) #Avoid mixing an alignment directive with a uint64_t cast or sizeof expression - sed 's/(__align8__ \(u\?int64_t\))/(\1)/g' -i $@.tmp - $(call move-if-changed,$@.tmp,$@) + sed 's/(__align8__ \(u\?int64_t\))/(\1)/g' < $@.tmp > $@.tmp2 + rm $@.tmp + $(call move-if-changed,$@.tmp2,$@) checker.c: mkchecker.py structs.py $(PYTHON) $< $@ $(architectures)