diff options
author | sergei <sergei@FreeBSD.org> | 2004-09-27 20:20:52 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2004-09-27 20:20:52 +0800 |
commit | 280422fd040232226cddc00710b1c83f9fee599d (patch) | |
tree | 9ff46e9ef166f66adced5f7a6065a03b97b807fc /shells | |
parent | e129ff2e988631a5d9740cb6cb80fc641699d65b (diff) | |
download | freebsd-ports-gnome-280422fd040232226cddc00710b1c83f9fee599d.tar.gz freebsd-ports-gnome-280422fd040232226cddc00710b1c83f9fee599d.tar.zst freebsd-ports-gnome-280422fd040232226cddc00710b1c83f9fee599d.zip |
- Fix package build on pointyhat and other environments where
there is no controlling tty by adding --with-tcsetpgrp argument
to CONFIGURE_ARGS
Pointed by: pointyhat (via kris, krion)
Submitted by: eik (based on)
Approved by: portmgr (eik)
Diffstat (limited to 'shells')
-rw-r--r-- | shells/zsh/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index 69fdf3ca4741..e1286bb6699d 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -61,7 +61,8 @@ GNU_CONFIGURE= yes USE_REINPLACE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS= --enable-etcdir=${ZSH_ETCDIR} --with-curses-terminfo \ +CONFIGURE_ARGS= --with-curses-terminfo --with-tcsetpgrp \ + --enable-etcdir=${ZSH_ETCDIR} \ --enable-fndir=${ZSH_FNDIR} --enable-function-subdirs \ --enable-site-fndir=${ZSH_SITEFNDIR} |