Merge: text: escape_to_mk should not escape =
authorJean Privat <jean@pryen.org>
Fri, 8 Jun 2018 00:33:06 +0000 (20:33 -0400)
committerJean Privat <jean@pryen.org>
Fri, 8 Jun 2018 00:33:06 +0000 (20:33 -0400)
commit498c8dae7550c83c2da4942afc2276a662ec930d
treeabe9328648fb1d84246908451c5b96de816485be
parent9e2821a37cb66e1cdf0e5583d0038e102af49fbb
parent3c5e16f80b21d076ad1b63f3c7df96af29bbc4df
Merge: text: escape_to_mk should not escape =

Remove the escaping to ASCII hex value for the `=` char in `escape_to_mk`. It doesn't appear to be necessary, it was not documented and it breaks `nitls` support for `nitpm` packages.

Here's the error raised by `make` when it can't parse an escaped `=`.
~~~
make: *** No rule to make target '/home/xymus/.local/lib/nit/gamnit?3ddepth-vbos/lib/gamnit/bmfont.nit'
~~~

Pull-Request: #2713