Date: Mon, 16 Nov 2015 04:02:25 +0000 (UTC) From: Craig Rodrigues <rodrigc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r290906 - head/share/locale-links Message-ID: <201511160402.tAG42PqE028675@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511160402.tAG42PqE028675>