diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-15 13:04:04 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-15 13:04:04 +0300 |
commit | cee779c80087f8eb0a164521a00fdb60bb0b05ca (patch) | |
tree | 96ba57872929e738de62f98c20430a93e47bb070 /gnu | |
parent | a888342f8924601055aaf320db78449510abdd29 (diff) |
gnu: libtirpc: Keep reference to mit-krb5 when cross-compiling.
* gnu/packages/onc-roc.scm (libtirpc)[arguments]: When cross-compiling
adjust the pkg-config file to retain a reference to mit-krb5.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/onc-rpc.scm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/packages/onc-rpc.scm b/gnu/packages/onc-rpc.scm index afeb26331c..0c87c02a0b 100644 --- a/gnu/packages/onc-rpc.scm +++ b/gnu/packages/onc-rpc.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2018, 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2022, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2022 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. @@ -64,7 +64,17 @@ "src/getnetconfig.c" "tirpc/netconfig.h") (("/etc/netconfig") (string-append (assoc-ref outputs "out") - "/etc/netconfig")))))))) + "/etc/netconfig"))))) + ,@(if (%current-target-system) + `((add-after 'unpack 'adjust-pkg-config + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "libtirpc.pc.in" + (("-ltirpc") + (string-append "-ltirpc" + " -L" (dirname (search-input-file + inputs "/lib/libkrb5.so")) + " -lkrb5")))))) + `())))) (native-inputs (list mit-krb5)) ;; for cross-compilation (inputs (list mit-krb5)) (home-page "https://sourceforge.net/projects/libtirpc/") |