comparison make/linux/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 01aa164323fa
children d8041d695d19
comparison
equal deleted inserted replaced
14330:9341a9963d36 14331:67d6392ed21e
1 # 1 #
2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1999, 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.
364 DEST_JVM_DEBUGINFO = $(DEST_SUBDIR)/$(LIBJVM_DEBUGINFO) 364 DEST_JVM_DEBUGINFO = $(DEST_SUBDIR)/$(LIBJVM_DEBUGINFO)
365 DEST_JVM_DIZ = $(DEST_SUBDIR)/$(LIBJVM_DIZ) 365 DEST_JVM_DIZ = $(DEST_SUBDIR)/$(LIBJVM_DIZ)
366 366
367 install_jvm: $(LIBJVM) 367 install_jvm: $(LIBJVM)
368 @echo "Copying $(LIBJVM) to $(DEST_JVM)" 368 @echo "Copying $(LIBJVM) to $(DEST_JVM)"
369 $(QUIETLY) test -f $(LIBJVM_DEBUGINFO) && \ 369 $(QUIETLY) test ! -f $(LIBJVM_DEBUGINFO) || \
370 cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO) 370 cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO)
371 $(QUIETLY) test -f $(LIBJVM_DIZ) && \ 371 $(QUIETLY) test ! -f $(LIBJVM_DIZ) || \
372 cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ) 372 cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ)
373 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done" 373 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
374 374
375 #---------------------------------------------------------------------- 375 #----------------------------------------------------------------------
376 # Other files 376 # Other files