My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pydot/hardcode-graphviz-path.patch

13 lines
432 B

diff --git a/pydot.py b/pydot.py
index 3c7da4d..582c5bc 100644
--- a/pydot.py
+++ b/pydot.py
@@ -124,7 +124,7 @@ def call_graphviz(program, arguments, working_dir, **kwargs):
'LD_LIBRARY_PATH': os.environ.get('LD_LIBRARY_PATH', ''),
}
- program_with_args = [program, ] + arguments
+ program_with_args = ['@graphviz@/bin/' + program, ] + arguments
process = subprocess.Popen(
program_with_args,