From: Matthew Fernandez Date: Sat, 5 Jun 2021 18:20:34 +0000 (-0700) Subject: fix typo in error message when failing to find Python 2 install dir X-Git-Tag: 2.47.3~8^2~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4315f7d0226c3b66e40957af74b7da76465993c;p=graphviz fix typo in error message when failing to find Python 2 install dir 32466ecc452102a1fc84f4331c0ed099da4e7edc replicated the unified Python bindings support into Python 2 and Python 3 cases. However, it incorrectly used the Python 3 variable in this error message instead of the Python 2 variable. Related to #1992. --- diff --git a/tclpkg/Makefile.am b/tclpkg/Makefile.am index 48c2d3642..d03cc5b38 100644 --- a/tclpkg/Makefile.am +++ b/tclpkg/Makefile.am @@ -90,7 +90,7 @@ if WITH_PYTHON2 cp -f $(DESTDIR)$(pkgpython2dir)/libgv_python2.so _gv.so; \ cp -f $(DESTDIR)$(pkgpython2dir)/gv.py gv.py;) \ else \ - echo "Warning: @PYTHON3_INSTALL_DIR@ is not writable."; \ + echo "Warning: @PYTHON2_INSTALL_DIR@ is not writable."; \ echo "Skipping system installation of python2 binding."; \ fi endif