285f5549c6
Patches rebased via git, see https://github.com/fedora-python/cpython/tree/fedora-3.8.0a4 ABIFLAGS changed not to contain m, see https://bugs.python.org/issue36707
31 lines
948 B
Diff
31 lines
948 B
Diff
From 5ee8362bd5cc991b956efa9cf06eb6ad2607f57c Mon Sep 17 00:00:00 2001
|
|
From: Robert Kuska <rkuska@redhat.com>
|
|
Date: Mon, 21 Sep 2015 15:55:00 +0200
|
|
Subject: [PATCH 6/9] 00205: Make LIBPL variable respect the libdir macro
|
|
|
|
LIBPL variable in Makefile takes LIBPL from configure.ac,
|
|
but the LIBPL variable defined there doesn't respect the libdir macro.
|
|
|
|
Co-authored-by: Robert Kuska <rkuska@redhat.com>
|
|
Co-authored-by: Charalampos Stratakis <cstratak@redhat.com>
|
|
---
|
|
Makefile.pre.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.pre.in b/Makefile.pre.in
|
|
index 414aa96008..a07bd6718d 100644
|
|
--- a/Makefile.pre.in
|
|
+++ b/Makefile.pre.in
|
|
@@ -1512,7 +1512,7 @@ inclinstall:
|
|
|
|
# Install the library and miscellaneous stuff needed for extending/embedding
|
|
# This goes into $(exec_prefix)
|
|
-LIBPL= @LIBPL@
|
|
+LIBPL= $(LIBDEST)/config-$(LDVERSION)-$(MULTIARCH)
|
|
|
|
# pkgconfig directory
|
|
LIBPC= $(LIBDIR)/pkgconfig
|
|
--
|
|
2.21.0
|
|
|