From d409e41009730882cb76b5539b152270020eb6f4 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Fri, 6 Jun 2003 17:32:08 +0000 Subject: [PATCH] ICU-2921 Fix the case where the compiler is a two part command. X-SVN-Rev: 12349 --- icu4c/source/configure | 2 +- icu4c/source/configure.in | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/icu4c/source/configure b/icu4c/source/configure index 8cf3aaafc1..b993971f3c 100755 --- a/icu4c/source/configure +++ b/icu4c/source/configure @@ -2385,7 +2385,7 @@ if test $ac_cv_header_inttypes_h = no; then else U_HAVE_INTTYPES_H=1 fi -if test $CC = ccc; then +if test "$CC" = ccc; then echo "$ac_t"""C compiler set to CCC ${CC}" " 1>&6 case "${host}" in alpha*-*-*) U_HAVE_INTTYPES_H=0; diff --git a/icu4c/source/configure.in b/icu4c/source/configure.in index 517c806abb..86f57726eb 100644 --- a/icu4c/source/configure.in +++ b/icu4c/source/configure.in @@ -4,7 +4,7 @@ dnl Copyright (c) 1999-2003, International Business Machines Corporation and dnl others. All Rights Reserved. dnl Stephen F. Booth, heavily modified by Yves and others -dnl $Id: configure.in,v 1.189 2003/06/03 16:57:07 grhoten-oss Exp $ +dnl $Id: configure.in,v 1.190 2003/06/06 17:32:08 grhoten-oss Exp $ dnl Process this file with autoconf to produce a configure script AC_INIT(common/unicode/utypes.h) @@ -289,7 +289,7 @@ if test $ac_cv_header_inttypes_h = no; then else U_HAVE_INTTYPES_H=1 fi -if test $CC = ccc; then +if test "$CC" = ccc; then AC_MSG_RESULT("C compiler set to CCC ${CC}" ) case "${host}" in alpha*-*-*) U_HAVE_INTTYPES_H=0;