create bsd12 branch

This commit is contained in:
ziggi
2019-12-26 07:26:06 +00:00
commit 5cfdab6bfe
14432 changed files with 2272620 additions and 0 deletions

17
Mk/Uses/fakeroot.mk Normal file
View File

@@ -0,0 +1,17 @@
# $FreeBSD: head/Mk/Uses/fakeroot.mk 411970 2016-03-27 01:23:25Z bapt $
#
# Changes some default behaviour of build systems to allow installing as user.
#
# Feature: fakeroot
# Usage: USES=fakeroot
# Valid ARGS: none
#
# MAINTAINER: bapt@FreeBSD.org
.if !defined(_INCLUDE_USES_FAKEROOT_MK)
_INCLUDE_USES_FAKEROOT_MK= yes
BUILD_DEPENDS+= fakeroot:security/fakeroot
.if ${UID} != 0
FAKEROOT?= fakeroot
.endif
.endif