Skip to content
Snippets Groups Projects
Commit 26716c05 authored by Kevin Layer's avatar Kevin Layer
Browse files

Fix build on 64-bit Solaris/x86_64

$(MACHINE) test needed to use x86_64 not x86.

Change-Id: I7a85a833f6cb5189013f87547b34961cefb5a9b4
parent 0ece9df0
No related branches found
No related tags found
No related merge requests found
# $Header: /repo/cvs.copy/clim2/Makefile,v 2.6 2005/08/03 05:07:13 layer Exp $
# If ../makefile.top doesn't exist, then you must specify HOST=xxx on the # If ../makefile.top doesn't exist, then you must specify HOST=xxx on the
# `make' command line. # `make' command line.
...@@ -14,7 +12,7 @@ ifeq ($(OS_NAME),sunos) ...@@ -14,7 +12,7 @@ ifeq ($(OS_NAME),sunos)
ifeq ($(MACHINE),sparc) ifeq ($(MACHINE),sparc)
HOST = sun4-svr4 HOST = sun4-svr4
endif endif
ifeq ($(MACHINE),x86) ifeq ($(MACHINE),x86_64)
HOST = solamd64 HOST = solamd64
endif endif
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment