diff --git a/indra/develop.py b/indra/develop.py
index 1f9b08c59c855abf84f87da8c45a0ba9a12d94d7..fb2319ccf6d654136e6fc2c31a88838eefa557dc 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -109,8 +109,8 @@ def cmake_commandline(self, src_dir, build_dir, opts, simple):
             unattended=self.unattended,
             type=self.build_type.upper(),
             )
-        if simple:
-            return 'cmake %(opts)s %(dir)r' % args
+        #if simple:
+        #    return 'cmake %(opts)s %(dir)r' % args
         return ('cmake -DCMAKE_BUILD_TYPE:STRING=%(type)s '
                 '-DSTANDALONE:BOOL=%(standalone)s '
                 '-DUNATTENDED:BOOL=%(unattended)s '
@@ -262,8 +262,11 @@ def cmake_commandline(self, src_dir, build_dir, opts, simple):
                 gcc41 = distcc + self.find_in_path('g++-4.1', 'g++', True)
                 args.update({'cxx': ' '.join(gcc41), 'server':'FALSE',
                              'viewer':'TRUE'})
-        if simple:
-            return 'cmake %(opts)s %(dir)r' % args
+        #if simple:
+        #    return (('cmake %(opts)s '
+        #             '-DSERVER:BOOL=%(server)s ' 
+        #             '-DVIEWER:BOOL=%(viewer)s '
+        #             '%(dir)r') % args)
         cmd = (('cmake -DCMAKE_BUILD_TYPE:STRING=%(type)s '
                 '-G %(generator)r -DSERVER:BOOL=%(server)s '
                 '-DVIEWER:BOOL=%(viewer)s -DSTANDALONE:BOOL=%(standalone)s '
@@ -371,8 +374,8 @@ def cmake_commandline(self, src_dir, build_dir, opts, simple):
             unattended=self.unattended,
             type=self.build_type.upper()
             )
-        if simple:
-            return 'cmake %(opts)s %(dir)r' % args
+        #if simple:
+        #    return 'cmake %(opts)s %(dir)r' % args
         return ('cmake -G %(generator)r '
                 '-DCMAKE_BUILD_TYPE:STRING=%(type)s '
                 '-DSTANDALONE:BOOL=%(standalone)s '
@@ -452,8 +455,8 @@ def cmake_commandline(self, src_dir, build_dir, opts, simple):
             standalone=self.standalone,
             unattended=self.unattended,
             )
-        if simple:
-            return 'cmake %(opts)s "%(dir)s"' % args
+        #if simple:
+        #    return 'cmake %(opts)s "%(dir)s"' % args
         return ('cmake -G "%(generator)s" '
                 '-DSTANDALONE:BOOL=%(standalone)s '
                 '-DUNATTENDED:BOOL=%(unattended)s '
@@ -550,8 +553,8 @@ def cmake_commandline(self, src_dir, build_dir, opts, simple):
             standalone=self.standalone,
             unattended=self.unattended,
             )
-        if simple:
-            return 'cmake %(opts)s "%(dir)s"' % args
+        #if simple:
+        #    return 'cmake %(opts)s "%(dir)s"' % args
         return ('cmake -G "%(generator)s" '
                 '-DUNATTENDED:BOOl=%(unattended)s '
                 '-DSTANDALONE:BOOL=%(standalone)s '