summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2011-04-28 23:43:23 +0300
committerEli Zaretskii <eliz@gnu.org>2011-04-28 23:43:23 +0300
commitaff458c34222850730c60104fe94588ba845ab99 (patch)
tree7fc98eff88ac85ff5b9131e080f993b2404802c3 /nt
parent6c06b142a0acf592e28921209d2fe684738e600d (diff)
downloademacs-aff458c34222850730c60104fe94588ba845ab99.tar.gz
nt/gmake.defs (ARCH): Fix error message in case of unknown architecture.
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog5
-rw-r--r--nt/gmake.defs2
2 files changed, 6 insertions, 1 deletions
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 <eliz@gnu.org>
+
+ * gmake.defs (ARCH): Fix error message in case of unknown
+ architecture.
+
2011-04-27 Eli Zaretskii <eliz@gnu.org>
* 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