1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

nt/gmake.defs (ARCH): Fix error message in case of unknown architecture.

This commit is contained in:
Eli Zaretskii 2011-04-28 23:43:23 +03:00
parent 6c06b142a0
commit aff458c342
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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