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
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"