me
/
guix
Archived
1
0
Fork 0

gnu: qtbase: Do not capture cmake-minimal.

* gnu/packages/qt.scm (qtbase) [phases]: Add a substitution to the
patch-more-paths phase.
master
Maxim Cournoyer 2023-02-07 23:02:17 -05:00
parent e5a381d0ca
commit b6e7fe40e5
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 5 additions and 1 deletions

View File

@ -680,7 +680,11 @@ developers using C++ or QML, a CSS & JavaScript like language.")
(lambda* (#:key inputs #:allow-other-keys)
(substitute* (find-files "bin" "\\.in$")
(("/bin/pwd")
(search-input-file inputs "bin/pwd")))
(search-input-file inputs "bin/pwd"))
;; Do not keep a reference to cmake-minimal; it is looked
;; from PATH anyway.
(("original_cmake_path=\"@CMAKE_COMMAND@\"")
"original_cmake_path=\"\""))
(substitute* "src/gui/platform/unix/qgenericunixservices.cpp"
(("\"xdg-open\"")
(format #f "~s" (search-input-file inputs "bin/xdg-open"))))