diff --git a/setup.py b/setup.py index 1ed96b7d9..2f32b219c 100644 --- a/setup.py +++ b/setup.py @@ -479,6 +479,7 @@ def _progress_hook(count, block_size, total_size): # Patch ltmain.sh so it does not freak out on OS X when the build # directory contains spaces + ''' with open("ltmain.sh") as infp: with open("ltmain.sh.new", "w") as outfp: for line in infp: @@ -486,6 +487,7 @@ def _progress_hook(count, block_size, total_size): line = line.replace("cd $darwin_orig_dir\n", "cd \"$darwin_orig_dir\"\n") outfp.write(line) os.rename("ltmain.sh.new", "ltmain.sh") + ''' print("Configuring igraph...") retcode = subprocess.call(["./configure", "--disable-tls", "--disable-gmp"],