# HG changeset patch # User dholmes # Date 1368530690 14400 # Node ID 293b997874016cd412c3d60e3e3ac79662e03be3 # Parent 6114c49b31b5bd0c8d5f2cf2c82c8663c4ab25d4 8014460: Need to check for non-empty EXT_LIBS_PATH before using it Reviewed-by: tbell, collins, sla, coleenp diff -r 6114c49b31b5 -r 293b99787401 make/bsd/makefiles/arm.make --- a/make/bsd/makefiles/arm.make Fri May 10 11:27:55 2013 -0700 +++ b/make/bsd/makefiles/arm.make Tue May 14 07:24:50 2013 -0400 @@ -1,5 +1,5 @@ # -# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it @@ -24,6 +24,8 @@ Obj_Files += bsd_arm.o -LIBS += $(EXT_LIBS_PATH)/sflt_glibc.a +ifneq ($(EXT_LIBS_PATH),) + LIBS += $(EXT_LIBS_PATH)/sflt_glibc.a +endif CFLAGS += -DVM_LITTLE_ENDIAN diff -r 6114c49b31b5 -r 293b99787401 make/linux/makefiles/arm.make --- a/make/linux/makefiles/arm.make Fri May 10 11:27:55 2013 -0700 +++ b/make/linux/makefiles/arm.make Tue May 14 07:24:50 2013 -0400 @@ -1,5 +1,5 @@ # -# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it @@ -24,6 +24,8 @@ Obj_Files += linux_arm.o -LIBS += $(EXT_LIBS_PATH)/sflt_glibc.a +ifneq ($(EXT_LIBS_PATH),) + LIBS += $(EXT_LIBS_PATH)/sflt_glibc.a +endif CFLAGS += -DVM_LITTLE_ENDIAN