From 123ec1b8b91574fb055f399e9a93ff88043c11d8 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Thu, 31 May 2018 13:26:12 +0000 Subject: [PATCH] Move all of the directory path into the DIR part of the component and make the NAME be only the filename. This makes it possible to use the DIR as part of the dep in the future. Approved by: bapt (mentor) --- share/mk/bsd.nls.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/bsd.nls.mk b/share/mk/bsd.nls.mk index d160a2bcf2d4..684394b53889 100644 --- a/share/mk/bsd.nls.mk +++ b/share/mk/bsd.nls.mk @@ -71,12 +71,12 @@ STAGE_SYMLINKS_DIR.NLS= ${STAGE_OBJTOP} SYMLINKS+= ${NLSSYMLINKS} .endif .for file in ${NLS} -NLSNAME_${file:T}= ${file:T:R}/${NLSNAME}.cat +NLSDIR_${file:T}= ${NLSDIR}/${file:T:R} +NLSNAME_${file:T}= ${NLSNAME}.cat .if defined(NLSLINKS_${file:R}) && !empty(NLSLINKS_${file:R}) .if !empty(NLSLINKS_${file:R}:M${file:R}) .error NLSLINKS_${file:R} contains itself: ${file:R} .endif -NLSLINKS+= ${file:R} .endif .for dst in ${NLSLINKS_${file:R}} NLSSYMLINKS+= ../${file:R}/${NLSNAME}.cat ${NLSDIR}/${dst}/${NLSNAME}.cat