mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-21 20:11:24 +00:00
[build] Fix escaping of \ in plist to plc
Quoting is hard.
This commit is contained in:
parent
3235bb70c8
commit
65b2e1750c
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ V_SED_1 =
|
|||
|
||||
SUFFICES += .plist .plc
|
||||
.plist.plc:
|
||||
$(V_SED)sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n"/' $< > $@.t &&\
|
||||
$(V_SED)sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n"/' $< > $@.t &&\
|
||||
$(am__mv) $@.t $@
|
||||
|
||||
%.spv: %
|
||||
|
|
Loading…
Reference in a new issue