changeset 11306:2a26b86d7724

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 14 Aug 2013 14:27:52 +0200
parents edf7e09ad382 (current diff) fcb4cf14a3c3 (diff)
children da412706d0fd
files
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mx/commands.py	Wed Aug 14 14:27:40 2013 +0200
+++ b/mx/commands.py	Wed Aug 14 14:27:52 2013 +0200
@@ -564,9 +564,8 @@
         
     for build in builds:
         if build == 'ide-build-target':
-            build = os.environ.get('IDE_BUILD_TARGET', 'product')
-            if len(build) == 0:
-                mx.logv('[skipping build from IDE as IDE_BUILD_TARGET environment variable is ""]')
+            build = os.environ.get('IDE_BUILD_TARGET', None)
+            if build is None or len(build) == 0:
                 continue
 
         jdk = _jdk(build, create=True)