Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jan 2020 18:40:20 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356990 - head/etc
Message-ID:  <202001221840.00MIeKVm084316@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Jan 22 18:40:19 2020
New Revision: 356990
URL: https://svnweb.freebsd.org/changeset/base/356990

Log:
  Tag NLS aliases with package=runtime
  
  POSIX and en_US.US_ASCII are aliases (symlinks) to the C locale.  They were
  not previously tagged with a pkgbase pacakge.  Add the tag so that they are
  handled correctly on pkgbase-installed/updated systems.
  
  Discussed with:	manu

Modified:
  head/etc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Wed Jan 22 17:19:53 2020	(r356989)
+++ head/etc/Makefile	Wed Jan 22 18:40:19 2020	(r356990)
@@ -164,7 +164,8 @@ distrib-dirs: ${MTREES:N/*} distrib-cleanup .PHONY
 .endif
 .if ${MK_NLS} != "no"
 .for alias nls in ${NLS_ALIASES}
-	${INSTALL_SYMLINK} "${nls}" "${DESTDIR}${SHAREDIR}/nls/${alias}"
+	${INSTALL_SYMLINK} -T "package=utilities" \
+	    "${nls}" "${DESTDIR}${SHAREDIR}/nls/${alias}"
 .endfor
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001221840.00MIeKVm084316>