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/>

index | next in thread | previous in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=249145

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

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

.if defined(NO_ROOT)
.if !defined(TAGS) || ! ${TAGS:Mpackage=*}
TAGS+=          package=${PACKAGE:Uutilities}
.endif
TAG_ARGS=       -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+=  Scrt1.o crt1.o gcrt1.o
OBJS+=  crtbegin.o crtbeginS.o crtbeginT.o
OBJS+=  crtend.o crtendS.o
OBJS+=  crti.o crtn.o
...
FILES=          ${OBJS}
FILESMODE=      ${LIBMODE}
FILESOWN=       ${LIBOWN}
FILESGRP=       ${LIBGRP}
FILESDIR=       ${LIBDIR}

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

help

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