From da1b6d0a9fd723f0cb17a4ce73d5adc51a0c5199 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 30 Aug 2020 17:48:55 +0200 Subject: meson_exe: Remove two unused functions --- mesonbuild/scripts/meson_exe.py | 9 --------- 1 file changed, 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(): -- cgit v1.1