[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: srt: Fix pkg-config files.
From: |
guix-commits |
Subject: |
01/02: gnu: srt: Fix pkg-config files. |
Date: |
Sat, 24 Oct 2020 11:36:39 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit b6d3d7a41909d1eca466ef1865e753109241b9eb
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Oct 24 15:42:23 2020 +0200
gnu: srt: Fix pkg-config files.
* gnu/packages/networking.scm (srt)[arguments]: Use relative
CMAKE_INSTALL_INCLUDEDIR. Remove redundant #:configure-flags.
---
gnu/packages/networking.scm | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index d3f3153..4f506b4 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -325,12 +325,7 @@ supported, including rtmp://, rtmpt://, rtmpe://,
rtmpte://, and rtmps://.")
(list
(string-append "-DCMAKE_INSTALL_BINDIR="
(assoc-ref %outputs "out") "/bin")
- (string-append "-DCMAKE_INSTALL_LIBDIR="
- (assoc-ref %outputs "out") "/lib")
- (string-append "-DINSTALL_SHARED_DIR="
- (assoc-ref %outputs "out") "/lib")
- (string-append "-DCMAKE_INSTALL_INCLUDEDIR="
- (assoc-ref %outputs "out") "/include")
+ "-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DENABLE_STATIC=OFF"
"-DENABLE_UNITTESTS=ON")))
(native-inputs