summaryrefslogtreecommitdiff
path: root/neozip/tools/config.sub
diff options
context:
space:
mode:
Diffstat (limited to 'neozip/tools/config.sub')
-rwxr-xr-xneozip/tools/config.sub17
1 files changed, 17 insertions, 0 deletions
diff --git a/neozip/tools/config.sub b/neozip/tools/config.sub
new file mode 100755
index 0000000000..dba175ae31
--- /dev/null
+++ b/neozip/tools/config.sub
@@ -0,0 +1,17 @@
+#!/bin/sh
+# Canonicalize CHOST.
+# In particular, converts Debian multiarch tuples into GNU triplets.
+# See also
+# https://wiki.debian.org/Multiarch/Tuples
+# https://wiki.gentoo.org/wiki/CHOST
+# If you need an architecture not listed here, file a bug at github.com/zlib-ng/zlib-ng
+# and work around the problem by dropping libtool's much more comprehensive config.sub
+# on top of this file, see
+# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
+
+case "$1" in
+*-*-linux-gnu*) echo $1;;
+i686-linux-gnu*|x86_64-linux-gnu*) echo $1 | sed 's/-linux-gnu/-pc-linux-gnu/';;
+*-linux-gnu*) echo $1 | sed 's/-linux-gnu/-unknown-linux-gnu/';;
+*) echo $1;;
+esac