diff options
author | bapt <bapt@FreeBSD.org> | 2015-01-19 15:49:34 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-01-19 15:49:34 +0800 |
commit | cc332c00af2f4ff24453f2406a44a6cbb4ef1405 (patch) | |
tree | 9a6b8cb2d71e56a05af1bc2d33ab615daf2f0b83 /devel | |
parent | 87a5753f1f6d478912570285bb40d8c4f3e0edd7 (diff) | |
download | freebsd-ports-gnome-cc332c00af2f4ff24453f2406a44a6cbb4ef1405.tar.gz freebsd-ports-gnome-cc332c00af2f4ff24453f2406a44a6cbb4ef1405.tar.zst freebsd-ports-gnome-cc332c00af2f4ff24453f2406a44a6cbb4ef1405.zip |
Fix build with some locales
tr(1) has different behaviour depending on the locales. resulting in makelist
failing to properly generate some files. Encorfing LC_ALL=C during build fixes
it.
PR: 196848 [1]
Reported by: Trond.Endrestol@ximalas.info [1],
Christian Jachmann <Jachmann@unitix.org> (via private mail)
Tested by: Christian Jachmann <Jachmann@unitix.org> (via private mail)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libedit/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/libedit/Makefile b/devel/libedit/Makefile index af267c87935c..1cbcc7570a26 100644 --- a/devel/libedit/Makefile +++ b/devel/libedit/Makefile @@ -21,5 +21,6 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip CONFIGURE_ARGS= --enable-widec +MAKE_ENV= LC_ALL=C .include <bsd.port.mk> |