mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Fix compiling GLSL shaders under Windows.
Now the `sed` command cope with files using Windows-style line endings.
This commit is contained in:
parent
e46e9846fc
commit
96f94a2891
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue