svn commit: r368598 - head/tools/tools/locale

Yuri Pankov yuripv at FreeBSD.org
Sat Dec 12 23:41:48 UTC 2020


Author: yuripv
Date: Sat Dec 12 23:41:47 2020
New Revision: 368598
URL: https://svnweb.freebsd.org/changeset/base/368598

Log:
  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.

Modified:
  head/tools/tools/locale/Makefile

Modified: head/tools/tools/locale/Makefile
==============================================================================
--- head/tools/tools/locale/Makefile	Sat Dec 12 23:01:11 2020	(r368597)
+++ head/tools/tools/locale/Makefile	Sat Dec 12 23:41:47 2020	(r368598)
@@ -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
 


More information about the svn-src-head mailing list