comparison make/solaris/makefiles/vm.make @ 14331:67d6392ed21e

8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0 Summary: fixed faulty logic in makefiles when compressed FDS builds are disabled Reviewed-by: rdurbin, dholmes, never, dnsimon, tbell
author dcubed
date Fri, 07 Feb 2014 09:03:44 -0800
parents feae15578b2f
children d8041d695d19
comparison
equal deleted inserted replaced
14330:9341a9963d36 14331:67d6392ed21e
1 # 1 #
2 # Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 5 # This code is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 only, as 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
331 DEST_JVM_DEBUGINFO = $(DEST_SUBDIR)/$(LIBJVM_DEBUGINFO) 331 DEST_JVM_DEBUGINFO = $(DEST_SUBDIR)/$(LIBJVM_DEBUGINFO)
332 DEST_JVM_DIZ = $(DEST_SUBDIR)/$(LIBJVM_DIZ) 332 DEST_JVM_DIZ = $(DEST_SUBDIR)/$(LIBJVM_DIZ)
333 333
334 install_jvm: $(LIBJVM) 334 install_jvm: $(LIBJVM)
335 @echo "Copying $(LIBJVM) to $(DEST_JVM)" 335 @echo "Copying $(LIBJVM) to $(DEST_JVM)"
336 $(QUIETLY) test -f $(LIBJVM_DEBUGINFO) && \ 336 $(QUIETLY) test ! -f $(LIBJVM_DEBUGINFO) || \
337 cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO) 337 cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO)
338 $(QUIETLY) test -f $(LIBJVM_DIZ) && \ 338 $(QUIETLY) test ! -f $(LIBJVM_DIZ) || \
339 cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ) 339 cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ)
340 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done" 340 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
341 341
342 #---------------------------------------------------------------------- 342 #----------------------------------------------------------------------
343 # Other files 343 # Other files