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

Yuri Pankov <[email protected]> Sat, 12 Dec 2020 23:41:47 +0000 (UTC)
Newsgroups gmane.os.freebsd.devel.cvs,gmane.os.freebsd.current.scm
Message-ID <[email protected]>
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
 
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"