From 2c7ef7352eeaa80b2e38d251bf2f6f82e6672774 Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Thu, 29 Mar 2018 11:47:38 +0200 Subject: [PATCH] MacOSX: avoid spaces in the darwin name --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 664aa1ad..68d697b2 100644 --- a/configure.ac +++ b/configure.ac @@ -13,14 +13,14 @@ AC_CHECK_TOOL(STRIP, [strip], [:]) DVERSION="`${CXX} --version | grep apple-darwin || :`" case "$DVERSION" in - *-apple-darwin17*) DARWIN="High Sierra" ;; + *-apple-darwin17*) DARWIN="High-Sierra" ;; *-apple-darwin16*) DARWIN="Sierra" ;; - *-apple-darwin15*) DARWIN="El Capitan" ;; + *-apple-darwin15*) DARWIN="El-Capitan" ;; *-apple-darwin14*) DARWIN="Yosemite" ;; *-apple-darwin13*) DARWIN="Mavericks" ;; - *-apple-darwin12*) DARWIN="Mountain Lion" ;; + *-apple-darwin12*) DARWIN="Mountain-Lion" ;; *-apple-darwin11*) DARWIN="Lion" ;; - *-apple-darwin10*) DARWIN="SnowLeopard" ;; + *-apple-darwin10*) DARWIN="Snow-Leopard" ;; *-apple-darwin9*) DARWIN="Leopard" ;; *-apple-darwin?) AC_MSG_ERROR([echo Unsupported Mac OSX version $DVERSION])