Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Nov 2022 21:54:30 +0000
From:      bugzilla-noreply@freebsd.org
To:        pkgbase@FreeBSD.org
Subject:   [Bug 249145] pkgbase: lib32 directories/files in utilities.plist which belong in utilities-lib32.plist
Message-ID:  <bug-249145-36141-NXwMwVJmpf@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-249145-36141@https.bugs.freebsd.org/bugzilla/>
References:  <bug-249145-36141@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D249145

--- Comment #1 from Ed Maste <emaste@freebsd.org> ---
lib32 is handled by bsd.lib.mk:

.if ${SHLIBDIR:M*lib32*}
TAGS+=3D  lib32
.endif

.if defined(NO_ROOT)
.if !defined(TAGS) || ! ${TAGS:Mpackage=3D*}
TAGS+=3D          package=3D${PACKAGE:Uutilities}
.endif
TAG_ARGS=3D       -T ${TAGS:[*]:S/ /,/g}
.endif

but TAG_ARGS is used only by the install rules in bsd.lib.mk, not the rules=
 in
bsd.files.mk, which is what's used to install the csu files

(lib/csu/Makefile.inc)

OBJS+=3D  Scrt1.o crt1.o gcrt1.o
OBJS+=3D  crtbegin.o crtbeginS.o crtbeginT.o
OBJS+=3D  crtend.o crtendS.o
OBJS+=3D  crti.o crtn.o
...
FILES=3D          ${OBJS}
FILESMODE=3D      ${LIBMODE}
FILESOWN=3D       ${LIBOWN}
FILESGRP=3D       ${LIBGRP}
FILESDIR=3D       ${LIBDIR}

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-249145-36141-NXwMwVJmpf>