diff options
author | Cem Keylan <cem@ckyln.com> | 2021-05-03 16:36:15 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-05-03 16:36:15 +0300 |
commit | 68d7979291922385c3d3a3ec1f917401e2205757 (patch) | |
tree | 5cc601644cdc274739f90eb9b797658bfb51401f | |
parent | 7a859b5dea85505bc8ab30c7f5da7d5efe0541c8 (diff) | |
download | repository-68d7979291922385c3d3a3ec1f917401e2205757.tar.gz |
notmuch: fix bash requirement
-rwxr-xr-x | community/notmuch/build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/community/notmuch/build b/community/notmuch/build index b48f9221..86e207f4 100755 --- a/community/notmuch/build +++ b/community/notmuch/build @@ -1,5 +1,8 @@ #!/bin/sh -e +BASHCMD=$(command -v bash) || BASHCMD=sh +export BASHCMD + ./configure \ --prefix=/usr \ --without-docs \ |