From 9f7cfb700bc395a5d062a1493efca3b0c19e9303 Mon Sep 17 00:00:00 2001 From: Peeranut Chindanonda Date: Thu, 31 May 2018 16:54:33 +0200 Subject: [PATCH] Remove patch ltmain.sh --- setup.py | 2 ++ 1 file changed, 2 insertions(+) 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"],