Update Makefile.depend filesAfter building packages we have a number of newand updated Makefile.depend filesReviewed by: stevek
Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of BSD-2-Clause.Discussed with: pfgMFC After: 3 daysSponsored by: Netflix
show more ...
locale: exit 1 if unknown keyword was specifiedPR: 241906Submitted by: Akos Somfai <akos.somfai@gmail.com>
locale: more output fixes- make abday, day, abmon, mon, am_pm output quoting match linux- workaround localeconv() issue for mon_grouping and grouping (PR172215)- for other values not available in
locale: more output fixes- make abday, day, abmon, mon, am_pm output quoting match linux- workaround localeconv() issue for mon_grouping and grouping (PR172215)- for other values not available in default locale, output -1 instead of 127 (CHAR_MAX) as returned by localeconv()With these changes, output of `locale` and `locale -k` for all keywordsspecified by POSIX exactly matches the linux one.PR: 237752Reviewed by: baptDifferential Revision: https://reviews.freebsd.org/D21599
locale: handle day, abday, mon, abmon, am_pm keywordsAll of these are defined as mandatory by POSIX.While here, mark all non-standard ones as FreeBSD-only asother systems (at least, GNU/Linux an
locale: handle day, abday, mon, abmon, am_pm keywordsAll of these are defined as mandatory by POSIX.While here, mark all non-standard ones as FreeBSD-only asother systems (at least, GNU/Linux and illumos) do not handlethem, so we should not encourage their use.PR: 237752Reviewed by: baptDifferential Revision: https://reviews.freebsd.org/D21490