[Bug 249145] pkgbase: lib32 directories/files in utilities.plist which belong in utilities-lib32.plist
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 17 Nov 2022 21:54:30 UTC
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.