diff options
author | ache <ache@FreeBSD.org> | 1995-08-06 11:15:54 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-08-06 11:15:54 +0000 |
commit | 40eef631feca64b42b7f99a591792745ad0ac10d (patch) | |
tree | 4dec1be6287361dbff6942761332982630060caa /share | |
parent | cd7f88cc8db2624e31ec0837b6e1dddf97893db2 (diff) | |
download | FreeBSD-src-40eef631feca64b42b7f99a591792745ad0ac10d.zip FreeBSD-src-40eef631feca64b42b7f99a591792745ad0ac10d.tar.gz |
Re-import it to proper location
Diffstat (limited to 'share')
-rw-r--r-- | share/timedef/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/share/timedef/Makefile b/share/timedef/Makefile new file mode 100644 index 0000000..5b5b465 --- /dev/null +++ b/share/timedef/Makefile @@ -0,0 +1,13 @@ +# $Id: Makefile,v 1.1.1.1 1995/08/05 23:23:41 ache Exp $ + +LOCALES= ru_SU.KOI8-R +LOCALEDIR= ${DESTDIR}/usr/share/locale + +afterinstall: + for l in ${LOCALES}; do \ + grep -v '^#' < ${.CURDIR}/data/$$l > ${LOCALEDIR}/$$l/LC_TIME; \ + chown ${BINOWN}.${BINGRP} ${LOCALEDIR}/$$l/LC_TIME; \ + chmod 644 ${LOCALEDIR}/$$l/LC_TIME; \ + done + +.include <bsd.prog.mk> |