diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-30 09:53:31 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-30 09:57:14 +0300 |
commit | ada60644ca7010b7a93688e7c937ac03f891f1d9 (patch) | |
tree | 27373b24b865cfb4042873fc7f72232694c6c93f | |
parent | 5272f275d02344922b22a43b7c5cd2bb72a47e63 (diff) |
Fix weird indentation
Change-Id: I291856b9f37ea967c1f8d44cce05f53b52ed8b75
-rw-r--r-- | configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index ef10c7017e4b..fe91557dcfaa 100644 --- a/configure.ac +++ b/configure.ac @@ -6528,13 +6528,13 @@ if test "$ENABLE_JAVA" != ""; then if test -z "$with_jdk_home"; then # Currently only auto-detects 32-bit JDK - for ver in 1.7 1.6 1.5 1.4 1.3; do - reg_get_value "HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft/Java Development Kit/$ver/JavaHome" - if test -n "$regvalue"; then - _jdk_home=$regvalue - break - fi - done + for ver in 1.7 1.6 1.5 1.4 1.3; do + reg_get_value "HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft/Java Development Kit/$ver/JavaHome" + if test -n "$regvalue"; then + _jdk_home=$regvalue + break + fi + done if test -f "$_jdk_home/lib/jvm.lib" -a -f "$_jdk_home/bin/java.exe"; then with_jdk_home="$_jdk_home" howfound="found automatically" |