summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/latest/win64/find-mingw64.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/latest/win64/find-mingw64.sh')
-rwxr-xr-xcontrib/syslinux/latest/win64/find-mingw64.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/syslinux/latest/win64/find-mingw64.sh b/contrib/syslinux/latest/win64/find-mingw64.sh
deleted file mode 100755
index 6b620c8..0000000
--- a/contrib/syslinux/latest/win64/find-mingw64.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-cc="$1"
-
-for prefix in \
- mingw64- \
- x86_64-pc-mingw64- \
- x86_64-pc-mingw64msvc- \
- x86_64-pc-mingw32- \
- x86_64-pc-mingw32msvc- \
- x86_64-mingw64- \
- x86_64-mingw64msvc- \
- x86_64-mingw32- \
- x86_64-mingw32msvc- \
- ; do
- if "${prefix}${cc}" -v > /dev/null 2>&1; then
- echo "$prefix"
- exit 0
- fi
-done
-
-# No prefix, no idea what to do now...
-echo missing-
-exit 1