diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2016-09-01 15:10:33 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-09-01 22:10:33 +0300 |
commit | 389259c229b30d38ec9de503dff965973b24ee26 (patch) | |
tree | df6971dec4bf09164d3dff8c700caa0d49346fb5 | |
parent | fa59fa55e20a34b5c60217d9ba54d646160f6290 (diff) | |
download | meson-389259c229b30d38ec9de503dff965973b24ee26.zip meson-389259c229b30d38ec9de503dff965973b24ee26.tar.gz meson-389259c229b30d38ec9de503dff965973b24ee26.tar.bz2 |
Stop "fixing" command line in CustomTargets. (#737)
-rw-r--r-- | mesonbuild/backend/backends.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index e5dafc9..82b387d 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -584,7 +584,6 @@ class Backend(): os.path.join(lead_dir, outdir)) cmd.append(i) - cmd = [i.replace('\\', '/') for i in cmd] return (srcs, ofilenames, cmd) def run_postconf_scripts(self): |