diff options
author | Cem Keylan <cem@ckyln.com> | 2021-09-26 01:46:41 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-09-26 01:46:41 +0300 |
commit | 0dcf92909e12cd1d90ae6318d838ce52b7f0a867 (patch) | |
tree | 69c5818ba9e48fa6b9c5a39d417fea68fb73620b /extra/ncurses | |
parent | 9c2c6e05da71569bd9f14d4b0146ca86465dc9ba (diff) | |
download | repository-0dcf92909e12cd1d90ae6318d838ce52b7f0a867.tar.gz |
ncurses: fix potential package break when TERMINFO is set by a terminal
Diffstat (limited to 'extra/ncurses')
-rwxr-xr-x | extra/ncurses/build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extra/ncurses/build b/extra/ncurses/build index dfd67820..34b35911 100755 --- a/extra/ncurses/build +++ b/extra/ncurses/build @@ -1,5 +1,8 @@ #!/bin/sh -e +# Don't let foot break your ncurses compilation. +unset TERMINFO + ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ |