aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-08-30 17:48:55 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-08-30 23:37:46 +0300
commitda1b6d0a9fd723f0cb17a4ce73d5adc51a0c5199 (patch)
treef837c5262fbcd54fa1ea0ea881715872385bbc8d
parentefaa7520093eb6920fc5fde7baea1bbb8958bfaf (diff)
downloadmeson-da1b6d0a9fd723f0cb17a4ce73d5adc51a0c5199.zip
meson-da1b6d0a9fd723f0cb17a4ce73d5adc51a0c5199.tar.gz
meson-da1b6d0a9fd723f0cb17a4ce73d5adc51a0c5199.tar.bz2
meson_exe: Remove two unused functions
-rw-r--r--mesonbuild/scripts/meson_exe.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/mesonbuild/scripts/meson_exe.py b/mesonbuild/scripts/meson_exe.py
index a5acb22..f1b0299 100644
--- a/mesonbuild/scripts/meson_exe.py
+++ b/mesonbuild/scripts/meson_exe.py
@@ -16,7 +16,6 @@ import os
import sys
import argparse
import pickle
-import platform
import subprocess
from .. import mesonlib
@@ -30,14 +29,6 @@ def buildparser():
parser.add_argument('--capture')
return parser
-def is_windows():
- platname = platform.system().lower()
- return platname == 'windows' or 'mingw' in platname
-
-def is_cygwin():
- platname = platform.system().lower()
- return 'cygwin' in platname
-
def run_exe(exe):
if exe.exe_runner:
if not exe.exe_runner.found():