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.
This commit is contained in:
Yuri Pankov 2020-12-12 23:41:47 +00:00
parent aa6db9a045
commit 89b418d69e

View File

@ -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