svn commit: r290863 - head/tools/tools/locale

Baptiste Daroussin bapt at FreeBSD.org
Sun Nov 15 14:19:09 UTC 2015


Author: bapt
Date: Sun Nov 15 14:19:08 2015
New Revision: 290863
URL: https://svnweb.freebsd.org/changeset/base/290863

Log:
  Allow to generate the locale when the source directory is not /usr/src

Modified:
  head/tools/tools/locale/Makefile

Modified: head/tools/tools/locale/Makefile
==============================================================================
--- head/tools/tools/locale/Makefile	Sun Nov 15 13:09:08 2015	(r290862)
+++ head/tools/tools/locale/Makefile	Sun Nov 15 14:19:08 2015	(r290863)
@@ -41,15 +41,15 @@ install:
 .for t in ${TYPES}
 .  if ${KNOWN:M${t}}
 	rm -rf ${.CURDIR}/${t}.draft
-	rm -rf ${DESTDIR}/usr/src/share/${t}
-	mv ${.CURDIR}/${t} ${DESTDIR}/usr/src/share/
+	rm -rf ${.CURDIR}/../../../share/${t}
+	mv ${.CURDIR}/${t} ${.CURDIR}/../../../share/${t}
 .  endif
 .endfor
 
 post-install:
 .for t in ${TYPES}
 .  if ${KNOWN:M${t}}
-	(cd ${DESTDIR}/usr/src/share/${t} && \
+	(cd ${.CURDIR}/../../../share/${t} && \
 		make && make install && make clean)
 .  endif
 .endfor


More information about the svn-src-all mailing list