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)
20 lines
441 B
Makefile
20 lines
441 B
Makefile
# handle dependency on the makeinfo port
|
|
#
|
|
# Feature: makeinfo
|
|
# Usage: USES=makeinfo
|
|
# Valid ARGS: none
|
|
#
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_MAKEINFO_MK)
|
|
_INCLUDE_USES_MAKEINFO_MK= yes
|
|
|
|
. if !empty(makeinfo_ARGS)
|
|
IGNORE= USES=makeinfo - expects no arguments
|
|
. endif
|
|
|
|
# Depend specifically on makeinfo from ports
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/makeinfo:print/texinfo
|
|
MAKEINFO?= ${LOCALBASE}/bin/makeinfo
|
|
|
|
.endif
|