Fix compiling GLSL shaders under Windows.

Now the `sed` command cope with files using Windows-style line endings.
This commit is contained in:
Walter Barrett 2017-10-07 00:23:34 -04:00 committed by Zack Middleton
parent e46e9846fc
commit 96f94a2891
1 changed files with 1 additions and 1 deletions

View File

@ -1183,7 +1183,7 @@ define DO_REF_STR
$(echo_cmd) "REF_STR $<"
$(Q)rm -f $@
$(Q)echo "const char *fallbackShader_$(notdir $(basename $<)) =" >> $@
$(Q)cat $< | sed 's/^/\"/;s/$$/\\n\"/' >> $@
$(Q)cat $< | sed -e 's/^/\"/;s/$$/\\n\"/' -e 's/\r//g' >> $@
$(Q)echo ";" >> $@
endef