diff options
author | Munyoki Kilyungi | 2025-01-06 20:11:57 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-01-06 20:11:57 +0300 |
commit | 7cecd682794552e4da33c69530aa0012724115d9 (patch) | |
tree | 52e223e22dfbb99be746f9d4241ee58ceb1985fb | |
parent | b82a893e308bb5fbc012cd0781566c8997bc9702 (diff) | |
download | guix-bioinformatics-7cecd682794552e4da33c69530aa0012724115d9.tar.gz |
gn-guile: Patch "git -C" with correct git path.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | gn/packages/guile.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gn/packages/guile.scm b/gn/packages/guile.scm index 3b30b82..7328397 100644 --- a/gn/packages/guile.scm +++ b/gn/packages/guile.scm @@ -152,7 +152,8 @@ for MySQL.") (lambda* (#:key inputs #:allow-other-keys) (let ((git (assoc-ref inputs "git-minimal"))) (substitute* "web/view/markdown.scm" - (("\"git\"") (string-append "\"" git "/bin/git" "\"")))))) + (("\"git\"") (string-append "\"" git "/bin/git" "\"")) + (("git -C") (string-append git "/bin/git -C")))))) (add-after 'build 'install-script (lambda* _ (let* ((bash #$(this-package-input "bash-minimal")) |