Re: Invalid sanity check

2010-10-18 Thread Kelly O'Hair
On Oct 18, 2010, at 4:30 PM, David Holmes wrote: Kelly O'Hair said the following on 10/19/10 03:23: On Oct 17, 2010, at 10:35 PM, David Holmes wrote: I happened to notice in jdk/make/common/shared/Sanity.gmk: sane-gcc-compiler: ifeq ($(PLATFORM), solaris) ifndef OPENJDK @if [ -r $(GCC_COMP

Re: Invalid sanity check

2010-10-18 Thread David Holmes
Kelly O'Hair said the following on 10/19/10 03:23: On Oct 17, 2010, at 10:35 PM, David Holmes wrote: I happened to notice in jdk/make/common/shared/Sanity.gmk: sane-gcc-compiler: ifeq ($(PLATFORM), solaris) ifndef OPENJDK @if [ -r $(GCC_COMPILER_PATH) ]; then \ fi endif ifeq

Re: Invalid sanity check

2010-10-18 Thread Kelly O'Hair
On Oct 17, 2010, at 10:35 PM, David Holmes wrote: I happened to notice in jdk/make/common/shared/Sanity.gmk: sane-gcc-compiler: ifeq ($(PLATFORM), solaris) ifndef OPENJDK @if [ -r $(GCC_COMPILER_PATH) ]; then \ fi endif ifeq ($(PLATFORM), linux) Looks to me like there's

Invalid sanity check

2010-10-17 Thread David Holmes
I happened to notice in jdk/make/common/shared/Sanity.gmk: sane-gcc-compiler: ifeq ($(PLATFORM), solaris) ifndef OPENJDK @if [ -r $(GCC_COMPILER_PATH) ]; then \ fi endif ifeq ($(PLATFORM), linux) Looks to me like there's a misplaced endif there. David