0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-01-31 21:22:27 +00:00
termux-packages/packages/zsh/configure.ac.patch
TomIO d6856a4caf fix(main/zsh): Fix heredoc temp file creation (#22381)
Co-authored-by: Robert Kirkman <31490854+robertkirkman@users.noreply.github.com>
2024-11-25 01:34:37 +01:00

14 lines
583 B
Diff

diff --git a/configure.ac b/configure.ac
index c72148d06..1cecd2faa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -318,7 +318,7 @@ dnl Add /usr/local/share/zsh/site-functions if not yet present
dnl owing to $sitefndir, whether or not explicitly given.
dnl If not explicitly given, it hasn't been expanded yet.
if test X$sitefndir = X/usr/local/share/zsh/site-functions || \
- test X$sitefndir = Xno
+ test X$sitefndir = Xno || true
then fixed_sitefndir=''
elif test X$prefix != X/usr/local; then
if test X$prefix = XNONE && test X$ac_default_prefix = X/usr/local; then