diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-08 18:06:48 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-08 18:06:48 +0200 |
commit | 89834657a73b2482d9a9fa1601787630e9e8e0f4 (patch) | |
tree | 188264b5b88760476772d89aff96eb9138c6b486 | |
parent | c12719fa180fb6c999bd61e2dad15c438127a0e7 (diff) | |
download | meson-89834657a73b2482d9a9fa1601787630e9e8e0f4.zip meson-89834657a73b2482d9a9fa1601787630e9e8e0f4.tar.gz meson-89834657a73b2482d9a9fa1601787630e9e8e0f4.tar.bz2 |
Regression fix.
-rw-r--r-- | backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends.py b/backends.py index 86cf6aa..26ab081 100644 --- a/backends.py +++ b/backends.py @@ -394,7 +394,7 @@ class Backend(): target_id = match.group(2) i = i.replace(source, os.path.join(lead_dir, - self.get_target_private_dir(self.build.targets[target_id]))) + outdir)) cmd.append(i) cmd = [i.replace('\\', '/') for i in cmd] return (srcs, ofilenames, cmd) |