From 438f7f7e9063b53e34dadb1238b96ed26adb85c4 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 29 Jun 2020 17:06:32 +0200 Subject: [PATCH] bpo-41160: Support cross-compiling for GNU/Hurd. --- configure | 3 +++ configure.ac | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configure b/configure index 5024860ca4395a..6cdd0856ce5588 100755 --- a/configure +++ b/configure @@ -3303,6 +3303,9 @@ then *-*-cygwin*) ac_sys_system=Cygwin ;; + *-*-gnu) + ac_sys_system=GNU + ;; *-*-vxworks*) ac_sys_system=VxWorks ;; diff --git a/configure.ac b/configure.ac index 5a3e340aa3e72b..b03f3ec7043520 100644 --- a/configure.ac +++ b/configure.ac @@ -391,6 +391,9 @@ then *-*-cygwin*) ac_sys_system=Cygwin ;; + *-*-gnu) + ac_sys_system=GNU + ;; *-*-vxworks*) ac_sys_system=VxWorks ;;