aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/wrap/wrap.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-04-02 00:15:22 +0300
committerGitHub <noreply@github.com>2017-04-02 00:15:22 +0300
commitc7f66c3a9e4f69e0bcde8819f15c9d8b972a2f75 (patch)
tree95785dfa61d2d01925f66498e16f4d4cadeb9760 /mesonbuild/wrap/wrap.py
parentd2548e6e839b2058aae7f242db35d6836ccbeef7 (diff)
parent8df671b6f3995ed3f31409677464fa2f8fd81af9 (diff)
downloadmeson-c7f66c3a9e4f69e0bcde8819f15c9d8b972a2f75.zip
meson-c7f66c3a9e4f69e0bcde8819f15c9d8b972a2f75.tar.gz
meson-c7f66c3a9e4f69e0bcde8819f15c9d8b972a2f75.tar.bz2
Merge pull request #1505 from centricular/dont-use-c++-for-assembly
Try harder to use the C compiler for compiling asm
Diffstat (limited to 'mesonbuild/wrap/wrap.py')
-rw-r--r--mesonbuild/wrap/wrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/wrap/wrap.py b/mesonbuild/wrap/wrap.py
index fcacc16..67e4700 100644
--- a/mesonbuild/wrap/wrap.py
+++ b/mesonbuild/wrap/wrap.py
@@ -39,7 +39,7 @@ def build_ssl_context():
return ctx
def quiet_git(cmd):
- pc = subprocess.Popen(['git'] + cmd, stdout=subprocess.PIPE)
+ pc = subprocess.Popen(['git'] + cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = pc.communicate()
if pc.returncode != 0:
return False, err