diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-09-19 05:13:35 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-09-19 05:13:35 -0500 |
commit | eca902906533a6a81a33fd03663580327ea19d22 (patch) | |
tree | f2054ade874f55b469080d040684bb38170d794f | |
parent | 41b3496e24e3daf850a0e1bd67424c419a60031b (diff) | |
download | guix-techchud-eca902906533a6a81a33fd03663580327ea19d22.tar.gz guix-techchud-eca902906533a6a81a33fd03663580327ea19d22.tar.bz2 guix-techchud-eca902906533a6a81a33fd03663580327ea19d22.zip |
missed a gexp thing
-rw-r--r-- | archival.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/archival.scm b/archival.scm index b4f4255..0a6ec80 100644 --- a/archival.scm +++ b/archival.scm @@ -138,9 +138,7 @@ (arguments (list #:tests? #f - #:phases #~(modify-phases %standard-phases - (delete 'check) - ) + #:phases #~(modify-phases %standard-phases (delete 'check)) #:configure-flags #~(list "-DDOTTORRENT_BUILD_TESTS=OFF" @@ -171,9 +169,8 @@ (arguments (list #:tests? #f + #:phases #~(modify-phases %standard-phases (delete 'check)) #:configure-flags - #:phases (modify-phases %standard-phases - (delete 'check)) ; no configure script #~(list "-DTERMCONTROL_BUILD_TESTS=OFF" "-DCMAKE_INSTALL_INCLUDEDIR=include" |