1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: pkg-config: Fix typo in search paths.

* gnu/packages/pkg-config.scm
  (pkg-config-for-build)[native-search-paths]: Use "PKG_CONFIG_PATH_FOR_BUILD"
  instead of "PKG_CONFIG_PATH".

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Maxime Devos
2021-09-23 12:33:01 +02:00
committed by Mathieu Othacehe
parent 7c5f01d556
commit de47a6e13b

View File

@@ -166,5 +166,5 @@ exec ~a \"$@\""
(map (lambda (original)
(search-path-specification
(inherit original)
(variable "PKG_CONFIG_FOR_BUILD")))
(variable "PKG_CONFIG_PATH_FOR_BUILD")))
(package-native-search-paths %pkg-config)))))