equal
deleted
inserted
replaced
1 #!/bin/bash |
1 #!/bin/bash |
2 # |
2 # |
3 # Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
3 # Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. |
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 # |
5 # |
6 # This code is free software; you can redistribute it and/or modify it |
6 # This code is free software; you can redistribute it and/or modify it |
7 # under the terms of the GNU General Public License version 2 only, as |
7 # under the terms of the GNU General Public License version 2 only, as |
8 # published by the Free Software Foundation. |
8 # published by the Free Software Foundation. |
30 |
30 |
31 CONFIGURE_COMMAND_LINE="$@" |
31 CONFIGURE_COMMAND_LINE="$@" |
32 conf_script_dir=`dirname $0` |
32 conf_script_dir=`dirname $0` |
33 |
33 |
34 if [ "$CUSTOM_CONFIG_DIR" = "" ]; then |
34 if [ "$CUSTOM_CONFIG_DIR" = "" ]; then |
35 conf_custom_script_dir="$conf_script_dir/../../jdk/make/closed/autoconf" |
35 conf_custom_script_dir="$conf_script_dir/../../closed/autoconf" |
36 else |
36 else |
37 conf_custom_script_dir=$CUSTOM_CONFIG_DIR |
37 conf_custom_script_dir=$CUSTOM_CONFIG_DIR |
38 fi |
38 fi |
39 |
39 |
40 ### |
40 ### |