Ignore:
Timestamp:
Mar 26, 2011, 8:39:20 PM (14 years ago)
Author:
dmik
Message:

trunk: Merged in openjdk6 b22 from branches/vendor/oracle.

Location:
trunk/openjdk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk

  • trunk/openjdk/langtools/make/Makefile

    r173 r278  
    11#
    2 # Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
     2# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
    55# This code is free software; you can redistribute it and/or modify it
    66# under the terms of the GNU General Public License version 2 only, as
    7 # published by the Free Software Foundation.  Sun designates this
     7# published by the Free Software Foundation.  Oracle designates this
    88# particular file as subject to the "Classpath" exception as provided
    9 # by Sun in the LICENSE file that accompanied this code.
     9# by Oracle in the LICENSE file that accompanied this code.
    1010#
    1111# This code is distributed in the hope that it will be useful, but WITHOUT
     
    1919# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2020#
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
     21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
     22# or visit www.oracle.com if you need additional information or have any
     23# questions.
    2424#
    2525
     
    2727
    2828#
    29 # On Solaris, the 'make' utility from Sun will not work with these makefiles.
    30 #    This little rule is only understood by Sun's make, and is harmless
    31 #    when seen by the GNU make tool. If using Sun's make, this causes the
     29# On Solaris, the standard 'make' utility will not work with these makefiles.
     30#    This little rule is only understood by Solaris make, and is harmless
     31#    when seen by the GNU make tool. If using Solaris make, this causes the
    3232#    make command to fail.
    3333#
     
    4141SYSTEM_UNAME := $(shell uname)
    4242
     43# Where is unwanted output to be delivered?
     44# On Windows, MKS uses the special file "NUL", cygwin uses the customary unix file.
    4345ifeq ($(SYSTEM_UNAME), Windows_NT)
    4446DEV_NULL = NUL
    4547else
     48DEV_NULL = /dev/null
     49endif
     50
    4651ifneq (,$(findstring CYGWIN,$(SYSTEM_UNAME)))
    47 DEV_NULL = NUL
    4852USING_CYGWIN = true
    49 else
    50 DEV_NULL = /dev/null
    51 endif
    5253endif
    5354
     
    202203#-------------------------------------------------------------------
    203204#
    204 # Targets for Sun's internal JPRT build system
     205# Targets for Oracle's internal JPRT build system
    205206
    206207CD = cd
Note: See TracChangeset for help on using the changeset viewer.