diff options
author | Eric Anholt <[email protected]> | 2016-10-10 09:18:19 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2016-10-10 09:50:05 -0700 |
commit | 0f99c0686e9f14238125b3b7b492d35eb2f4c023 (patch) | |
tree | b6be41874ebca1366735d75af4477d91c2a8d6f0 /src/intel/Makefile.genxml.am | |
parent | ec9ed1c4d8f1005ea8b00fa673257564310d96a8 (diff) |
intel: Fix bash-specific redirection.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/Makefile.genxml.am')
-rw-r--r-- | src/intel/Makefile.genxml.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 "};" >> $@ |