aboutsummaryrefslogtreecommitdiff
path: root/tools/tools/locale
diff options
context:
space:
mode:
authorYuri Pankov <yuripv@FreeBSD.org>2020-12-12 23:41:47 +0000
committerYuri Pankov <yuripv@FreeBSD.org>2020-12-12 23:41:47 +0000
commit89b418d69e66d9f2a32d0860985ae04566f41977 (patch)
tree10351668baf4358bbac9e370547d3dc8166da175 /tools/tools/locale
parentaa6db9a045345e45a95dc9765780e38273b62767 (diff)
downloadsrc-89b418d69e66d9f2a32d0860985ae04566f41977.tar.gz
src-89b418d69e66d9f2a32d0860985ae04566f41977.zip
locale: fix mode for installed files to be 644, not 755
While here, drop '-c' flag to install as it's default and provided for backward compatibility only.
Notes
Notes: svn path=/head/; revision=368598
Diffstat (limited to 'tools/tools/locale')
-rw-r--r--tools/tools/locale/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools/locale/Makefile b/tools/tools/locale/Makefile
index a3913b46fbdb..95ed082d82af 100644
--- a/tools/tools/locale/Makefile
+++ b/tools/tools/locale/Makefile
@@ -96,7 +96,7 @@ install-${t}:
cd ${LOCALESRCDIR}/${t} && \
rm -f Makefile *.src && \
cd ${.OBJDIR} && \
- install -c ${t}/* ${LOCALESRCDIR}/${t}
+ install -m 644 ${t}/* ${LOCALESRCDIR}/${t}
. endif
.endfor