svn commit: r290906 - head/share/locale-links

Craig Rodrigues rodrigc at FreeBSD.org
Mon Nov 16 04:02:26 UTC 2015


Author: rodrigc
Date: Mon Nov 16 04:02:24 2015
New Revision: 290906
URL: https://svnweb.freebsd.org/changeset/base/290906

Log:
  Fix path for symlinks.
  
  Reviewed by:	ngie

Modified:
  head/share/locale-links/Makefile

Modified: head/share/locale-links/Makefile
==============================================================================
--- head/share/locale-links/Makefile	Mon Nov 16 03:32:12 2015	(r290905)
+++ head/share/locale-links/Makefile	Mon Nov 16 04:02:24 2015	(r290906)
@@ -15,7 +15,7 @@ ALIASES=	zh_Hans_CN.GB18030 zh_CN.GB1803
 
 .for from to in ${ALIASES}
 .for f in ${LC_FILES}
-SYMLINKS+=	${from}/${f} ${LOCALEDIR}/${to}/${f}
+SYMLINKS+=	../${from}/${f} ${LOCALEDIR}/${to}/${f}
 .endfor
 .endfor
 


More information about the svn-src-all mailing list