comparison make/linux/makefiles/jsig.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 de6a9e811145
children d8041d695d19
comparison
equal deleted inserted replaced
14330:9341a9963d36 14331:67d6392ed21e
1 # 1 #
2 # Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 2005, 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.
72 endif 72 endif
73 endif 73 endif
74 74
75 install_jsig: $(LIBJSIG) 75 install_jsig: $(LIBJSIG)
76 @echo "Copying $(LIBJSIG) to $(DEST_JSIG)" 76 @echo "Copying $(LIBJSIG) to $(DEST_JSIG)"
77 $(QUIETLY) test -f $(LIBJSIG_DEBUGINFO) && \ 77 $(QUIETLY) test ! -f $(LIBJSIG_DEBUGINFO) || \
78 cp -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO) 78 cp -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
79 $(QUIETLY) test -f $(LIBJSIG_DIZ) && \ 79 $(QUIETLY) test ! -f $(LIBJSIG_DIZ) || \
80 cp -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ) 80 cp -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ)
81 $(QUIETLY) cp -f $(LIBJSIG) $(DEST_JSIG) && echo "Done" 81 $(QUIETLY) cp -f $(LIBJSIG) $(DEST_JSIG) && echo "Done"
82 82
83 .PHONY: install_jsig 83 .PHONY: install_jsig