svn commit: r291414 - head/tools/build/options

Hajimu UMEMOTO ume at FreeBSD.org
Sat Nov 28 00:41:39 UTC 2015


Author: ume
Date: Sat Nov 28 00:41:37 2015
New Revision: 291414
URL: https://svnweb.freebsd.org/changeset/base/291414

Log:
  Fix breakage by recent collation change.
  LC_ALL has to be exported.

Modified:
  head/tools/build/options/makeman

Modified: head/tools/build/options/makeman
==============================================================================
--- head/tools/build/options/makeman	Sat Nov 28 00:27:16 2015	(r291413)
+++ head/tools/build/options/makeman	Sat Nov 28 00:41:37 2015	(r291414)
@@ -3,7 +3,7 @@
 # This file is in the public domain.
 
 set -o errexit
-LC_ALL=C
+export LC_ALL=C
 
 ident='$FreeBSD$'
 


More information about the svn-src-head mailing list