From: Eli Zaretskii Date: Thu, 28 Apr 2011 20:43:23 +0000 (+0300) Subject: nt/gmake.defs (ARCH): Fix error message in case of unknown architecture. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~181 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aff458c34222850730c60104fe94588ba845ab99;p=emacs.git nt/gmake.defs (ARCH): Fix error message in case of unknown architecture. --- diff --git a/nt/ChangeLog b/nt/ChangeLog index 4c0543ee008..ea4f7547962 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2011-04-28 Eli Zaretskii + + * gmake.defs (ARCH): Fix error message in case of unknown + architecture. + 2011-04-27 Eli Zaretskii * inc/inttypes.h: New file. diff --git a/nt/gmake.defs b/nt/gmake.defs index 7af7fe4ab68..dcc43c985a5 100644 --- a/nt/gmake.defs +++ b/nt/gmake.defs @@ -149,7 +149,7 @@ ARCH = alpha ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC" ARCH = ppc else -error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)" + $(error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)") endif endif endif