diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-10-08 21:37:44 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-10-10 18:38:01 +0200 |
commit | f51befedbbcd29eb8a054296b569ca54cafd7d97 (patch) | |
tree | b30a8fa7c5c3b312af5c09cf6374096c3df92735 /gnu/packages/libreoffice.scm | |
parent | 832735965d9c557254a702a3ab4900a50e34153f (diff) | |
download | patches-f51befedbbcd29eb8a054296b569ca54cafd7d97.tar patches-f51befedbbcd29eb8a054296b569ca54cafd7d97.tar.gz |
gnu: libreoffice: Don't replace "/bin/sh" reference with bash.
* gnu/packages/libreoffice.scm (libreoffice)[arguments]: Use (which "sh")
instead of (which "bash") in /bin/sh substitution.
Diffstat (limited to 'gnu/packages/libreoffice.scm')
-rw-r--r-- | gnu/packages/libreoffice.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm index 78139ff4d8..9980837c85 100644 --- a/gnu/packages/libreoffice.scm +++ b/gnu/packages/libreoffice.scm @@ -966,7 +966,7 @@ and to return information on pronunciations, meanings and synonyms.") (list "sysui/CustomTarget_share.mk" "solenv/gbuild/gbuild.mk" "solenv/gbuild/platform/unxgcc.mk") - (("/bin/sh") (which "bash"))) + (("/bin/sh") (which "sh"))) (mkdir "external/tarballs") (symlink xmlsec |