From: Eric Anholt Date: Mon, 10 Oct 2016 16:18:19 +0000 (-0700) Subject: intel: Fix bash-specific redirection. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f99c0686e9f14238125b3b7b492d35eb2f4c023;p=mesa.git intel: Fix bash-specific redirection. Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/Makefile.genxml.am b/src/intel/Makefile.genxml.am index 8d7d4026638..160a4115179 100644 --- a/src/intel/Makefile.genxml.am +++ b/src/intel/Makefile.genxml.am @@ -35,7 +35,7 @@ $(GENXML_GENERATED_FILES): genxml/gen_pack_header.py %_xml.h: %.xml Makefile $(MKDIR_GEN) $(AM_V_GEN) echo -n "static const uint8_t " > $@; \ - sed -e 's,_xml.h,,' <<< "`basename $@`_xml[] = {" >> $@; \ + echo "`basename $@`_xml[] = {" | sed -e 's,_xml.h,,' >> $@; \ cat $< | $(XXD) -i >> $@; \ echo "};" >> $@