2019-05-07 15:13:12 +00:00
|
|
|
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:
|
2015-09-21 13:55:00 +00:00
|
|
|
|
|
|
|
# Install the library and miscellaneous stuff needed for extending/embedding
|
|
|
|
# This goes into $(exec_prefix)
|
|
|
|
-LIBPL= @LIBPL@
|
2017-04-05 16:08:56 +00:00
|
|
|
+LIBPL= $(LIBDEST)/config-$(LDVERSION)-$(MULTIARCH)
|
2015-09-21 13:55:00 +00:00
|
|
|
|
|
|
|
# pkgconfig directory
|
|
|
|
LIBPC= $(LIBDIR)/pkgconfig
|
2019-05-07 15:13:12 +00:00
|
|
|
--
|
|
|
|
2.21.0
|
|
|
|
|