comparison make/bsd/makefiles/jsig.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 2a69cbe850a8
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
1 # 1 #
2 # Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 2005, 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.
89 endif 89 endif
90 90
91 install_jsig: $(LIBJSIG) 91 install_jsig: $(LIBJSIG)
92 @echo "Copying $(LIBJSIG) to $(DEST_JSIG)" 92 @echo "Copying $(LIBJSIG) to $(DEST_JSIG)"
93 ifeq ($(OS_VENDOR), Darwin) 93 ifeq ($(OS_VENDOR), Darwin)
94 $(QUIETLY) test ! -d $(LIBJSIG_DEBUGINFO) || \ 94 -$(QUIETLY) test -d $(LIBJSIG_DEBUGINFO) && \
95 cp -f -r $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO) 95 cp -f -r $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
96 else 96 else
97 $(QUIETLY) test ! -f $(LIBJSIG_DEBUGINFO) || \ 97 $(QUIETLY) test -f $(LIBJSIG_DEBUGINFO) && \
98 cp -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO) 98 cp -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
99 endif 99 endif
100 $(QUIETLY) test ! -f $(LIBJSIG_DIZ) || \ 100 $(QUIETLY) test ! -f $(LIBJSIG_DIZ) || \
101 cp -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ) 101 cp -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ)
102 $(QUIETLY) cp -f $(LIBJSIG) $(DEST_JSIG) && echo "Done" 102 $(QUIETLY) cp -f $(LIBJSIG) $(DEST_JSIG) && echo "Done"