mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
61d8acdb49
- Comments for BUILD_ and RUN_DEPENDS fail to mention alternate means to specify dependencie [2] - Fix make reinstall [3] - Trivial comment change for PORTDATA [4] PR: 151954 [1] 161314 [2] 167085 [3] 167465 [4] Submitted by: Anonymous <swell.k@gmail.com> [1] dougb@ and Chris Rees <utisoft@gmail.com> [2] Garrett Cooper <yanegomi@gmail.com> [3] "Bryan Drewery" <bryan@shatow.net> [4] Tested via: phw
32 lines
693 B
Makefile
32 lines
693 B
Makefile
# -*- tab-width: 4; -*-
|
|
# ex: ts=4
|
|
#
|
|
# bsd.local.mk - Sandbox for local modification to ports framework.
|
|
#
|
|
# Created by: Mark Linimon <linimon@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.if !defined(_POSTMKINCLUDED) && !defined(Local_Pre_Include)
|
|
|
|
Local_Pre_Include= bsd.local.mk
|
|
|
|
#
|
|
# Here is where any code that needs to run at bsd.port.pre.mk inclusion
|
|
# time should live.
|
|
#
|
|
|
|
.endif # !defined(_POSTMKINCLUDED) && !defined(Local_Pre_Include)
|
|
|
|
.if defined(_POSTMKINCLUDED) && !defined(Local_Post_Include)
|
|
|
|
Local_Post_Include= bsd.local.mk
|
|
|
|
#
|
|
# here is where any code that needs to run at bsd.port.post.mk inclusion
|
|
# time should live.
|
|
#
|
|
|
|
.endif # defined(_POSTMKINCLUDED) && !defined(Local_Post_Include)
|