diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-09-23 12:33:01 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-27 18:36:00 +0000 |
commit | de47a6e13baaf285deab339a7969fc7ee48e99b2 (patch) | |
tree | 31b6b294d35615a7b2f4de050335e7801faa8728 /gnu/packages/pkg-config.scm | |
parent | 7c5f01d55634254bea8bad4c9dcc31496efd4fce (diff) | |
download | guix-de47a6e13baaf285deab339a7969fc7ee48e99b2.tar.gz |
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>
Diffstat (limited to 'gnu/packages/pkg-config.scm')
-rw-r--r-- | gnu/packages/pkg-config.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/pkg-config.scm b/gnu/packages/pkg-config.scm index 2b4173a7db..dd0d18ae36 100644 --- a/gnu/packages/pkg-config.scm +++ b/gnu/packages/pkg-config.scm @@ -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))))) |