diff options
author | Ian Eure <ian@retrospec.tv> | 2025-06-17 20:58:05 -0700 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-06-17 20:58:05 -0700 |
commit | fedb0c6fe9b5703e9eed9a958352c25fbb6fa7b8 (patch) | |
tree | 4c5a4d73843aec81a05052a73fda642e672a3102 | |
parent | ce276facee58538f67f7af8e4e1eca11f7b8f6f4 (diff) |
Fix extra parens around `substitute*` on 32-bit platforms.fix-32bit-nss
Change-Id: I1b43ddf200debe1acf725ad6890815cfa2bd2438
-rw-r--r-- | gnu/packages/nss.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm index 6b5915671a..8c3ee71e9e 100644 --- a/gnu/packages/nss.scm +++ b/gnu/packages/nss.scm @@ -219,9 +219,9 @@ in the Mozilla clients.") ;; The script fails to determine the source ;; directory when running under 'datefudge' (see ;; <https://issues.guix.gnu.org/72239>). Help it. - ((substitute* "nss/tests/gtests/gtests.sh" - (("SOURCE_DIR=.*") - (string-append "SOURCE_DIR=" (getcwd) "/nss\n"))))) + (substitute* "nss/tests/gtests/gtests.sh" + (("SOURCE_DIR=.*") + (string-append "SOURCE_DIR=" (getcwd) "/nss\n")))) ;; The "PayPalEE.cert" certificate expires every six months, ;; leading to test failures: |