freebsd-ports/Mk/Uses/makeinfo.mk
Baptiste Daroussin 421767bd88 Remove the now unneeded ${PORTSDIR} from dependency definition in
The infrastructure Makefiles

PR:		206569
Exp run by:	antoine
Differential Revision:	D5047
2016-03-27 01:23:25 +00:00

23 lines
392 B
Makefile

# $FreeBSD$
#
# handle dependency on the makeinfo port
#
# Feature: makeinfo
# Usage: USES=makeinfo
# Valid ARGS: none
#
# MAINTAINER: portmgr@FreeBSD.org
.if !defined(_INCLUDE_USES_MAKEINFO_MK)
_INCLUDE_USES_MAKEINFO_MK= yes
.if !empty(makeinfo_ARGS)
IGNORE= USES=makeinfo - expects no arguments
.endif
.if !exists(/usr/bin/makeinfo)
BUILD_DEPENDS+= makeinfo:print/texinfo
.endif
.endif