mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
aa25396790
Run Tools/scripts/indent_make_if.pl on all of Mk. These white space changes contribute greatly to the readability of those files. As we have a version control system, finding out the reasons for the changes prior to these white space changes is still easily possible Differential Revision: https://reviews.freebsd.org/D35024 Reviewed by: portmgr (rene, bapt)
17 lines
326 B
Makefile
17 lines
326 B
Makefile
# handle terminfo.db and *.terminfo files used by ncurses
|
|
#
|
|
# Feature: terminfo
|
|
# Usage: USES=terminfo
|
|
# Valid ARGS: does not require args
|
|
|
|
.if !defined(_INCLUDE_USES_TERMINFO_MK)
|
|
_INCLUDE_USES_TERMINFO_MK= yes
|
|
|
|
. if !empty(terminfo_ARGS)
|
|
IGNORE= USES=terminfo does not require args
|
|
. endif
|
|
|
|
PLIST_FILES+= @terminfo
|
|
|
|
.endif
|