diff options
author | ache <ache@FreeBSD.org> | 2002-09-24 19:55:37 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2002-09-24 19:55:37 +0000 |
commit | 98b90cd850db79ea692cb187877279d89c07fbc8 (patch) | |
tree | 88c6c194facd6b262c9862800a6e6c2228abadf5 /lib/libncurses | |
parent | e51e2c42c3e7531af982259541b1ed53f2e74a00 (diff) | |
download | FreeBSD-src-98b90cd850db79ea692cb187877279d89c07fbc8.zip FreeBSD-src-98b90cd850db79ea692cb187877279d89c07fbc8.tar.gz |
Set _POSIX2_VERSION=199209 before calling MKkey_defs.sh as workaround of
obsolete +POS sort syntax.
Diffstat (limited to 'lib/libncurses')
-rw-r--r-- | lib/libncurses/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libncurses/Makefile b/lib/libncurses/Makefile index 12cb9e3..6e26194 100644 --- a/lib/libncurses/Makefile +++ b/lib/libncurses/Makefile @@ -318,7 +318,7 @@ term.h: MKterm.h.awk edit_cfg.sh Caps curses.h: curses.head MKkey_defs.sh Caps cat curses.head > $@.new - AWK=${AWK} sh ${NCURSES}/include/MKkey_defs.sh \ + AWK=${AWK} _POSIX2_VERSION=199209 sh ${NCURSES}/include/MKkey_defs.sh \ ${NCURSES}/include/Caps >> $@.new cat ${NCURSES}/include/curses.tail >> $@.new mv -f $@.new $@ |