gnu: vcflib: Set absolute path to pkg-config.
Setting the absolute path to pkg-config is required to support cross-compilation. * gnu/packages/bioinformatics.scm (vcflib)[arguments]: Set PKG_CONFIG_EXECUTABLE in #:configure-flags. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9047a31152
commit
8d25887d87
1 changed files with 7 additions and 1 deletions
|
@ -14608,7 +14608,13 @@ library automatically handles index file generation and use.")
|
|||
("intervaltree-src" ,(package-source intervaltree))
|
||||
("multichoose-src" ,(package-source multichoose))))
|
||||
(arguments
|
||||
(list #:tests? #f ; no tests
|
||||
(list #:configure-flags
|
||||
#~(list (string-append
|
||||
"-DPKG_CONFIG_EXECUTABLE="
|
||||
(search-input-file
|
||||
%build-inputs (string-append
|
||||
"/bin/" #$(pkg-config-for-target)))))
|
||||
#:tests? #f ; no tests
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'build-shared-library
|
||||
|
|
Reference in a new issue