# HG changeset patch # User Chris Seaton # Date 1391268793 0 # Node ID 5d455591cfbdc54a62c2f583d0105bad021f3dea # Parent f11d3d5248b574672f602c0adea2970e1f22c16c Ruby: fix copyright message in shell. diff -r f11d3d5248b5 -r 5d455591cfbd graal/com.oracle.truffle.ruby.shell/src/com/oracle/truffle/ruby/shell/CommandLineParser.java --- a/graal/com.oracle.truffle.ruby.shell/src/com/oracle/truffle/ruby/shell/CommandLineParser.java Fri Jan 31 16:36:02 2014 -0800 +++ b/graal/com.oracle.truffle.ruby.shell/src/com/oracle/truffle/ruby/shell/CommandLineParser.java Sat Feb 01 15:33:13 2014 +0000 @@ -348,8 +348,13 @@ * Print copyright information. */ private static void copyright(PrintStream out) { - out.println("Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved."); - out.println("ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms."); + out.println("Copyright (c) 2013, 2014 Oracle and/or its affiliates. All rights reserved. This"); + out.println("code is released under a tri EPL/GPL/LGPL license. You can use it,"); + out.println("redistribute it and/or modify it under the terms of the:"); + out.println(); + out.println("Eclipse Public License version 1.0"); + out.println("GNU General Public License version 2"); + out.println("GNU Lesser General Public License version 2.1"); } }