From 89b418d69e66d9f2a32d0860985ae04566f41977 Mon Sep 17 00:00:00 2001 From: Yuri Pankov Date: Sat, 12 Dec 2020 23:41:47 +0000 Subject: 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. --- tools/tools/locale/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/tools/locale') 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 -- cgit v1.2.3