From: Stephen C North Date: Thu, 12 Sep 2019 01:58:19 +0000 (-0400) Subject: gv python patch https://gitlab.com/graphviz/graphviz/issues/1591 X-Git-Tag: 2.42.2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=411745f4c403cd0d8b9cff3940f4606491c63fcc;p=graphviz gv python patch https://gitlab.com/graphviz/graphviz/issues/1591 --- diff --git a/tclpkg/gv/Makefile.am b/tclpkg/gv/Makefile.am index 70469f4e8..e1d60fbfa 100644 --- a/tclpkg/gv/Makefile.am +++ b/tclpkg/gv/Makefile.am @@ -430,10 +430,10 @@ if WITH_PYTHON (cd $(DESTDIR)$(pkgpythondir); rm -f _gv.so; $(LN_S) libgv_python.so _gv.so;) endif if WITH_PYTHON2 - (cd $(DESTDIR)$(pkgpython2dir); rm -f _gv.so; $(LN_S) libgv_python.so _gv.so;) + (cd $(DESTDIR)$(pkgpython2dir); rm -f _gv.so; $(LN_S) libgv_python2.so _gv.so;) endif if WITH_PYTHON3 - (cd $(DESTDIR)$(pkgpython3dir); rm -f _gv.so; $(LN_S) libgv_python.so _gv.so;) + (cd $(DESTDIR)$(pkgpython3dir); rm -f _gv.so; $(LN_S) libgv_python3.so _gv.so;) endif if WITH_R (cd $(DESTDIR)$(pkgRdir); rm -f gv.so; $(LN_S) libgv_R.so gv.so;)