diff options
author | pav <pav@FreeBSD.org> | 2005-01-29 23:02:44 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-01-29 23:02:44 +0000 |
commit | 0a25737a27ee74b15e59679a2e70a56088caee87 (patch) | |
tree | 87816956d06915aba030f6e270d52212536c78e5 | |
parent | 7a017a29386aa585af86125b6b5a37203d1ef9a5 (diff) | |
download | FreeBSD-ports-0a25737a27ee74b15e59679a2e70a56088caee87.zip FreeBSD-ports-0a25737a27ee74b15e59679a2e70a56088caee87.tar.gz |
- Fix build on Unicode locales by forcing LANG=C
PR: ports/76585
Submitted by: clemens fischer <ino-qc@spotteswoode.dnsalias.org>
-rw-r--r-- | lang/clisp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 10abaab..c49e700 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -26,7 +26,7 @@ USE_GETTEXT= yes # invokes a configure script, which encounters a different CC variable than # the one the top-level configure cached. We'll explicitly set CC to avoid # this. -MAKE_ENV+= CC="${CC}" +MAKE_ENV+= CC="${CC}" LANG=C CONFIGURE_ENV+= CC="${CC}" # The build uses INSTALL_* to copy files around, but since the Ports |