diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-14 23:10:02 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-09-14 23:18:24 +0900 |
commit | 258aab2c9b3cf320fc025c282934f215a0d9ea3e (patch) | |
tree | 8a13a7f0894caeb8694162c4889a625d7a55ec39 /gnu/packages/version-control.scm | |
parent | a08fc6e60a84232648f7c043218be33f2d1949b0 (diff) | |
download | guix-258aab2c9b3cf320fc025c282934f215a0d9ea3e.tar guix-258aab2c9b3cf320fc025c282934f215a0d9ea3e.tar.gz |
Revert "gnu: git-minimal: Patch 'sh' command in git-send-email script."
This reverts commit 5fb5cbb8b4c8a87cdb49658ab86e2f4c8721c3d2. This will have
to wait/go to a dedicated branch as it causes all the GTK+ world to be rebuilt...
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index b7fa5b0f0b..852879901a 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -366,12 +366,7 @@ Python 3.3 and later, rather than on Python 2.") (("\\$\\(basename") (string-append "$(" (search-input-file inputs "bin/basename"))) (("sed -e") - (string-append (search-input-file inputs "bin/sed") " -e"))) - - ;; git-send-email invokes the editor via 'sh'; patch it. - (substitute* "git-send-email.perl" - (("'sh'") - (format #f "'~a'" (search-input-file inputs "bin/sh")))))) + (string-append (search-input-file inputs "bin/sed") " -e"))))) (add-after 'configure 'patch-makefiles (lambda _ (substitute* "Makefile" |