diff options
-rw-r--r-- | gnu/packages/wm.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 8aa314e56b..6e950592fc 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -75,7 +75,7 @@ ;;; Copyright © 2024 bigbug <[email protected]> ;;; Copyright © 2024 dan <[email protected]> ;;; Copyright © 2024 Wamm K. D. <[email protected]> -;;; Copyright © 2024 Ashish SHUKLA <[email protected]> +;;; Copyright © 2024, 2025 Ashish SHUKLA <[email protected]> ;;; Copyright © 2024 Josep Bigorra <[email protected]> ;;; Copyright © 2024 Jakob Kirsch <[email protected]> ;;; Copyright © 2025 Tomáš Čech <[email protected]> @@ -3804,7 +3804,7 @@ which do not support it.") (add-after 'unpack 'patch-source-paths (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) - (substitute* "main.c" + (substitute* (list "main.c" "style.css") (("/usr/share") (string-append out "/share")) (("/etc") (string-append out "/etc")))) #t))))) |