1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Stefano Rivera <stefanor@debian.org>
Date: Fri, 18 Nov 2022 17:38:35 +0200
Subject: Install into versioned directory
Support multiple supported Python versions.
Bug-Debian: https://bugs.debian.org/1024299
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index fce236c..225c904 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -9,7 +9,7 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = pythonmagick_src helpers_src
# where to put the bastard
-pymagickexecdir = $(pyexecdir)/$(PACKAGE_NAME)
+pymagickexecdir = $(PYTHON_SITE_PKG)/$(PACKAGE_NAME)
# name of our library
pymagickexec_LTLIBRARIES = _PythonMagick.la
|