diff options
author | Marius Bakke <marius@gnu.org> | 2022-07-14 03:00:58 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-07-16 23:25:19 +0200 |
commit | 5a4406a93d1ce69cfc1d9cada44bafb3d510f23f (patch) | |
tree | ec72c8a7a44db273dab49fd6c020f0e91991a41f /gnu/packages/libffi.scm | |
parent | 71289da7230c4410311879ca7f983e8a4649a320 (diff) |
gnu: python-cffi: Remove input labels.
* gnu/packages/libffi.scm (python-cffi)[arguments]: Use SEARCH-INPUT-FILE
instead of labels.
Diffstat (limited to 'gnu/packages/libffi.scm')
-rw-r--r-- | gnu/packages/libffi.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/libffi.scm b/gnu/packages/libffi.scm index 76d699f071..52c70a53ff 100644 --- a/gnu/packages/libffi.scm +++ b/gnu/packages/libffi.scm @@ -117,9 +117,8 @@ conversions for values passed between the two languages.") ;; using find_library or the like with their name fail when the ;; resolved .so object is a linker script rather than an ELF ;; binary (this is a limitation of the ctype library of Python). - (let* ((glibc (assoc-ref inputs "libc")) - (libm (string-append glibc "/lib/libm.so.6")) - (libc (string-append glibc "/lib/libc.so.6"))) + (let ((libm (search-input-file inputs "lib/libm.so.6")) + (libc (search-input-file inputs "lib/libc.so.6"))) (substitute* '("testing/cffi0/test_function.py" "testing/cffi0/test_parsing.py" "testing/cffi0/test_unicode_literals.py" |