mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-28 03:51:53 +02:00
gnu: encfs: Fix build failure with GCC 7.
Fixes <https://bugs.gnu.org/37779>. Reported by Pierre Neidhardt <mail@ambrevar.xyz>. * gnu/packages/crypto.scm (encfs)[arguments]: Add phase 'patch-CMakeLists.txt'.
This commit is contained in:
@@ -211,6 +211,15 @@ OpenBSD tool of the same name.")
|
||||
(copy-recursively (assoc-ref inputs "googletest-source")
|
||||
"vendor/github.com/google/googletest")
|
||||
#t))
|
||||
(add-before 'configure 'patch-CMakeLists.txt
|
||||
(lambda _
|
||||
;; Prevent CMake from adding libc on the system include path.
|
||||
;; Otherwise it will interfere with the libc used by GCC and
|
||||
;; ultimately cause #include_next errors.
|
||||
(substitute* "CMakeLists.txt"
|
||||
(("include_directories \\(SYSTEM \\$\\{Intl_INCLUDE_DIRS\\}\\)")
|
||||
""))
|
||||
#t))
|
||||
(add-before 'check 'make-unittests
|
||||
(lambda _
|
||||
(invoke "make" "unittests"))))))
|
||||
|
||||
Reference in New Issue
Block a user