comparison make/solaris/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 892acf0431ef
children d8041d695d19
comparison
equal deleted inserted replaced
14330:9341a9963d36 14331:67d6392ed21e
1 # 1 #
2 # Copyright (c) 2005, 2012, 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.
77 endif 77 endif
78 endif 78 endif
79 79
80 install_jsig: $(LIBJSIG) 80 install_jsig: $(LIBJSIG)
81 @echo "Copying $(LIBJSIG) to $(DEST_JSIG)" 81 @echo "Copying $(LIBJSIG) to $(DEST_JSIG)"
82 $(QUIETLY) test -f $(LIBJSIG_DEBUGINFO) && \ 82 $(QUIETLY) test ! -f $(LIBJSIG_DEBUGINFO) || \
83 cp -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO) 83 cp -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
84 $(QUIETLY) test -f $(LIBJSIG_DIZ) && \ 84 $(QUIETLY) test ! -f $(LIBJSIG_DIZ) || \
85 cp -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ) 85 cp -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ)
86 $(QUIETLY) cp -f $(LIBJSIG) $(DEST_JSIG) && echo "Done" 86 $(QUIETLY) cp -f $(LIBJSIG) $(DEST_JSIG) && echo "Done"
87 87
88 .PHONY: install_jsig 88 .PHONY: install_jsig