From f4315f7d0226c3b66e40957af74b7da76465993c Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 5 Jun 2021 11:20:34 -0700 Subject: [PATCH] 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. --- tclpkg/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0