comparison make/linux/makefiles/saproc.make @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 67d6392ed21e
children 89152779163c
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, 2012, 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.
111 $(RM) $(LIBSAPROC_DEBUGINFO) 111 $(RM) $(LIBSAPROC_DEBUGINFO)
112 endif 112 endif
113 endif 113 endif
114 114
115 install_saproc: $(BUILDLIBSAPROC) 115 install_saproc: $(BUILDLIBSAPROC)
116 $(QUIETLY) if [ -e $(LIBSAPROC) ] ; then \ 116 $(QUIETLY) if [ -e $(LIBSAPROC) ] ; then \
117 echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)"; \ 117 echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)"; \
118 test ! -f $(LIBSAPROC_DEBUGINFO) || \ 118 test -f $(LIBSAPROC_DEBUGINFO) && \
119 cp -f $(LIBSAPROC_DEBUGINFO) $(DEST_SAPROC_DEBUGINFO); \ 119 cp -f $(LIBSAPROC_DEBUGINFO) $(DEST_SAPROC_DEBUGINFO); \
120 test ! -f $(LIBSAPROC_DIZ) || \ 120 test -f $(LIBSAPROC_DIZ) && \
121 cp -f $(LIBSAPROC_DIZ) $(DEST_SAPROC_DIZ); \ 121 cp -f $(LIBSAPROC_DIZ) $(DEST_SAPROC_DIZ); \
122 cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done"; \ 122 cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done"; \
123 fi 123 fi
124 124
125 .PHONY: install_saproc 125 .PHONY: install_saproc