mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
5d33e04596
Where appropriate fiddle with a few other things.
19 lines
428 B
Makefile
19 lines
428 B
Makefile
# Handle gnu configure that does not properly support DESTDIR
|
|
#
|
|
# Feature: desthack
|
|
# Usage: USES=desthack
|
|
# Valid ARGS: none
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_DESTHACK_MK)
|
|
_INCLUDE_USES_DESTHACK_MK= yes
|
|
|
|
.if !empty(desthack_ARGS)
|
|
IGNORE= USES=desthack does not require args
|
|
.endif
|
|
|
|
GNU_CONFIGURE_PREFIX= \$${${DESTDIRNAME}}${PREFIX}
|
|
GNU_CONFIGURE_MANPREFIX= \$${${DESTDIRNAME}}${MANPREFIX}
|
|
.endif
|