fd6bb9e41a
termcap entry reordering requires ex (which is available via usr.bin/vi), which breaks on build hosts where installworld is run with MK_VI == no (or when make delete-old is run on ^/projects/building-blocks as vi, et al, are removed on the branch when the knob is tweaked to => "no") Reordering termcap was believed to improve performance, but the file is now accessed via /etc/termcap.db, so /etc/termcap (and /usr/share/misc/termcap by proxy) access is less preferred. Reordering the file broke the historical comment <-> entry mapping as well, which could muddle the purpose of entries in the file, so it could be potentially harmful to readers in its reordered state. Discussion took place on hackers@ here: https://lists.freebsd.org/pipermail/freebsd-hackers/2014-December/046657.html Discussed with: -hackers, mp MFC after: 1 month Sponsored by: EMC / Isilon Storage Division
30 lines
619 B
Makefile
30 lines
619 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
|
# $FreeBSD$
|
|
|
|
# reorder gives an editor command for most common terminals
|
|
# (in reverse order from n'th to 1'st most commonly used)
|
|
# to move them to the front of termcap
|
|
#
|
|
MAN= termcap.5
|
|
|
|
FILES= termcap termcap.db
|
|
FILESDIR= ${BINDIR}/misc
|
|
CLEANFILES+= termcap.db
|
|
|
|
.include <bsd.endian.mk>
|
|
.if ${TARGET_ENDIANNESS} == "1234"
|
|
CAP_MKDB_ENDIAN= -l
|
|
.elif ${TARGET_ENDIANNESS} == "4321"
|
|
CAP_MKDB_ENDIAN= -b
|
|
.else
|
|
CAP_MKDB_ENDIAN=
|
|
.endif
|
|
|
|
termcap.db: termcap
|
|
cap_mkdb ${CAP_MKDB_ENDIAN} termcap
|
|
|
|
etc-termcap:
|
|
ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
|
|
|
|
.include <bsd.prog.mk>
|