mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-26 16:18:31 +00:00
add support to buildworld as a normal user:
-DNOFSCHG disables installation of libs with flag schg GAMEGRP change the group with which games are installed also organize the binary section into alphebetical order some what..
This commit is contained in:
parent
7eb56d9409
commit
0099533a1c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48204
@ -1,6 +1,6 @@
|
||||
# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
|
||||
|
||||
BINGRP= games
|
||||
BINGRP= ${GAMEGRP}
|
||||
BINDIR?= /usr/games
|
||||
|
||||
.if defined(HIDEGAME)
|
||||
|
@ -1,5 +1,5 @@
|
||||
# from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91
|
||||
# $Id: bsd.lib.mk,v 1.85 1999/01/22 12:41:26 jdp Exp $
|
||||
# $Id: bsd.lib.mk,v 1.86 1999/03/23 03:06:25 bde Exp $
|
||||
#
|
||||
|
||||
.if !target(__initialized__)
|
||||
@ -262,7 +262,7 @@ _EXTRADEPEND:
|
||||
beforeinstall:
|
||||
.endif
|
||||
|
||||
.if defined(PRECIOUSLIB)
|
||||
.if defined(PRECIOUSLIB) && !defined(NOFSCHG)
|
||||
SHLINSTALLFLAGS+= -fschg
|
||||
.endif
|
||||
|
||||
@ -276,7 +276,7 @@ realinstall: beforeinstall
|
||||
.endif
|
||||
.endif
|
||||
.if defined(SHLIB_NAME)
|
||||
${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
||||
${INSTALL} ${COPY} ${STRIP} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
||||
${INSTALLFLAGS} ${SHLINSTALLFLAGS} \
|
||||
${SHLIB_NAME} ${DESTDIR}${SHLIBDIR}
|
||||
.if defined(SHLIB_LINK)
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $Id: bsd.own.mk,v 1.22 1999/04/20 14:24:52 peter Exp $
|
||||
# $Id: bsd.own.mk,v 1.23 1999/04/23 20:53:34 peter Exp $
|
||||
#
|
||||
# The include file <bsd.own.mk> set common variables for owner,
|
||||
# group, mode, and directories. Defaults are in brackets.
|
||||
@ -139,6 +139,13 @@ BINGRP?= wheel
|
||||
BINMODE?= 555
|
||||
NOBINMODE?= 444
|
||||
|
||||
GAMEGRP?= games
|
||||
|
||||
KMODDIR?= /modules
|
||||
KMODOWN?= ${BINOWN}
|
||||
KMODGRP?= ${BINGRP}
|
||||
KMODMODE?= ${BINMODE}
|
||||
|
||||
.if ${OBJFORMAT} == aout
|
||||
LIBDIR?= /usr/lib/aout
|
||||
.else
|
||||
@ -152,11 +159,6 @@ LIBOWN?= ${BINOWN}
|
||||
LIBGRP?= ${BINGRP}
|
||||
LIBMODE?= ${NOBINMODE}
|
||||
|
||||
KMODDIR?= /modules
|
||||
KMODOWN?= ${BINOWN}
|
||||
KMODGRP?= ${BINGRP}
|
||||
KMODMODE?= ${BINMODE}
|
||||
|
||||
|
||||
# Share files
|
||||
SHAREDIR?= /usr/share
|
||||
|
Loading…
Reference in New Issue
Block a user