comparison make/linux/Makefile @ 3703:50a1d38cd7ac

Add newlines at the end of files, otherwise my version of gcc complains
author Christian Wimmer <christian.wimmer@oracle.com>
date Mon, 28 Nov 2011 18:20:46 -0800
parents 782ed8718420
children 04b9a2566eec
comparison
equal deleted inserted replaced
3702:584c70f06938 3703:50a1d38cd7ac
231 231
232 # We do not want people accidentally building on old systems (e.g. Linux 2.2.x, 232 # We do not want people accidentally building on old systems (e.g. Linux 2.2.x,
233 # Solaris 2.5.1, 2.6). 233 # Solaris 2.5.1, 2.6).
234 # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok. 234 # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok.
235 235
236 SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% 236 SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% 3.0%
237 OS_VERSION := $(shell uname -r) 237 OS_VERSION := $(shell uname -r)
238 EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION)) 238 EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION))
239 239
240 check_os_version: 240 check_os_version:
241 ifeq ($(DISABLE_HOTSPOT_OS_VERSION_CHECK)$(EMPTY_IF_NOT_SUPPORTED),) 241 ifeq ($(DISABLE_HOTSPOT_OS_VERSION_CHECK)$(EMPTY_IF_NOT_SUPPORTED),)