summaryrefslogtreecommitdiffstats
path: root/share/numericdef
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>2001-02-09 21:01:50 +0000
committerwollman <wollman@FreeBSD.org>2001-02-09 21:01:50 +0000
commitdbc6187cacde7ea408dcd8ae52fe60005ddaac11 (patch)
tree685bdf2ac614fd7a25a2a65d37ae9d952dc18ad5 /share/numericdef
parent820e3e851b5e0406c056e5355a8791cffade00d2 (diff)
downloadFreeBSD-src-dbc6187cacde7ea408dcd8ae52fe60005ddaac11.zip
FreeBSD-src-dbc6187cacde7ea408dcd8ae52fe60005ddaac11.tar.gz
Use make(1) for loop rather than sh(1) loop.
Diffstat (limited to 'share/numericdef')
-rw-r--r--share/numericdef/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile
index 5c8f5d7..d786f22 100644
--- a/share/numericdef/Makefile
+++ b/share/numericdef/Makefile
@@ -25,9 +25,9 @@ LOCALEDIR= ${DESTDIR}/usr/share/locale
all: ${LOCALES:S/$/.out/g}
afterinstall:
- for l in ${LOCALES}; do \
- ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} $$l.out \
- ${LOCALEDIR}/$$l/LC_NUMERIC; \
- done
+.for lang in ${LOCALES}
+ ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
+ ${LOCALEDIR}/${lang}/LC_NUMERIC
+.endfor
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud