comparison make/bsd/makefiles/vm.make @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents d8041d695d19
children cc844a4512f1
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
1 # 1 #
2 # Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1999, 2013, 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.
386 DEST_JVM_DIZ = $(DEST_SUBDIR)/$(LIBJVM_DIZ) 386 DEST_JVM_DIZ = $(DEST_SUBDIR)/$(LIBJVM_DIZ)
387 387
388 install_jvm: $(LIBJVM) 388 install_jvm: $(LIBJVM)
389 @echo "Copying $(LIBJVM) to $(DEST_JVM)" 389 @echo "Copying $(LIBJVM) to $(DEST_JVM)"
390 ifeq ($(OS_VENDOR), Darwin) 390 ifeq ($(OS_VENDOR), Darwin)
391 $(QUIETLY) test ! -d $(LIBJVM_DEBUGINFO) || \ 391 -$(QUIETLY) test -d $(LIBJVM_DEBUGINFO) && \
392 cp -f -r $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO) 392 cp -f -r $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO)
393 else 393 else
394 $(QUIETLY) test ! -f $(LIBJVM_DEBUGINFO) || \ 394 $(QUIETLY) test -f $(LIBJVM_DEBUGINFO) && \
395 cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO) 395 cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO)
396 endif 396 endif
397 $(QUIETLY) test ! -f $(LIBJVM_DIZ) || \ 397 $(QUIETLY) test ! -f $(LIBJVM_DIZ) || \
398 cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ) 398 cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ)
399 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done" 399 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"