1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: chromium: Silent 'local-file' warning.

This is a followup to fddc870632.

* gnu/packages/chromium.scm (%guix-patches): Use 'assume-valid-file-name'.
This commit is contained in:
Ludovic Courtès
2020-11-05 16:15:22 +01:00
parent a4e7749e91
commit a5945a60cf

View File

@@ -335,8 +335,12 @@
"0visyhz321ykrmbjndvx31yd8xlmha9gas0xbkavc2i45rpfahjq"))))
(define %guix-patches
(list (local-file (search-patch "ungoogled-chromium-system-nspr.patch"))
(local-file (search-patch "ungoogled-chromium-extension-search-path.patch"))))
(list (local-file
(assume-valid-file-name
(search-patch "ungoogled-chromium-system-nspr.patch")))
(local-file
(assume-valid-file-name
(search-patch "ungoogled-chromium-extension-search-path.patch")))))
;; This is a source 'snippet' that does the following:
;; *) Applies various patches for unbundling purposes and libstdc++ compatibility.