me
/
guix
Archived
1
0
Fork 0

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

This is a followup to fddc870632.

* gnu/packages/chromium.scm (%guix-patches): Use 'assume-valid-file-name'.
master
Ludovic Courtès 2020-11-05 16:15:22 +01:00
parent a4e7749e91
commit a5945a60cf
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 2 deletions

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.