File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -627,11 +627,14 @@ def do_custom_build(self, env):
627627 },
628628 ** env ,
629629 }
630- configure_ac = os .path .join (src_path , "builds" , "unix" , "configure.ac" )
630+ configure_ac = os .path .join (
631+ src_path , "builds" , "unix" , "configure.ac" )
631632 if os .path .exists (os .path .join (src_path , "autogen.sh" )) \
632633 and not os .path .exists (configure_ac ):
633- print (f"{ configure_ac } does not exist. Using sh autogen.sh to generate." )
634- subprocess .check_call (["sh" , "./autogen.sh" ], env = env , cwd = src_path )
634+ print (f"{ configure_ac } does not exist. "
635+ f"Using sh autogen.sh to generate." )
636+ subprocess .check_call (
637+ ["sh" , "./autogen.sh" ], env = env , cwd = src_path )
635638 env ["CFLAGS" ] = env .get ("CFLAGS" , "" ) + " -fPIC"
636639 configure = [
637640 "./configure" , "--with-zlib=no" , "--with-bzip2=no" ,
You can’t perform that action at this time.
0 commit comments