me
/
guix
Archived
1
0
Fork 0

gnu: f2fs-tools-static: Fix build after f2fs-tools update.

Fixes <https://bugs.gnu.org/45494>.

* gnu/packages/linux.scm (f2fs-tools-static)[arguments]<#:configure-flags>:
Modify libuuid_CFLAGS, libblkid_CFLAGS.
master
Danny Milosavljevic 2020-12-28 15:00:27 +01:00
parent 4e342a560c
commit a099d833af
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 3 additions and 2 deletions

View File

@ -5127,9 +5127,10 @@ disks and SD cards. This package provides the userland utilities.")
(let ((libuuid-static (assoc-ref %build-inputs "libuuid:static"))
(libuuid (assoc-ref %build-inputs "libuuid")))
(list
(string-append "libuuid_CFLAGS=-I" libuuid "/include")
(string-append "libuuid_CFLAGS=-I" libuuid "/include/uuid")
(string-append "libuuid_LIBS=-L" libuuid-static "/lib -luuid")
(string-append "libblkid_CFLAGS=-I" libuuid "/include")
(string-append "libblkid_CFLAGS=-I" libuuid "/include/uuid "
"-I" libuuid "/include/blkid")
(string-append "libblkid_LIBS=-L" libuuid-static "/lib -lblkid")))
#:disallowed-references (,util-linux)
#:phases