Skip to content

Commit

Permalink
Fixed tiny issue with not-executable ./configure (Gnuplot compilation…
Browse files Browse the repository at this point in the history
… via pip install in some environments)
  • Loading branch information
alexeigurevich committed Dec 6, 2017
1 parent a2fffcd commit 02231ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quast_libs/ca_utils/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def compile_gnuplot(logger, only_clean=False):
prev_dir = os.getcwd()
os.chdir(tool_dirpath)
return_code = qutils.call_subprocess(
['./configure', '--with-qt=no', '--disable-wxwidgets', '--prefix=' + tool_dirpath],
['sh', 'configure', '--with-qt=no', '--disable-wxwidgets', '--prefix=' + tool_dirpath],
stdout=open(join(tool_dirpath, 'make.log'), 'w'),
stderr=open(join(tool_dirpath, 'make.err'), 'w'),
indent=' ')
Expand Down

0 comments on commit 02231ef

Please sign in to comment.