diff options
author | mbr <mbr@FreeBSD.org> | 2003-01-22 01:17:08 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-01-22 01:17:08 +0800 |
commit | c8412085cfaa03735618cbaf090c73cef8794813 (patch) | |
tree | ada420f7dbcf547daef879c8e202043aaaa9cd43 /editors/openoffice-1.0 | |
parent | 7a9720b72d1cc47ac7214c17c18311f7fe216b95 (diff) | |
download | freebsd-ports-gnome-c8412085cfaa03735618cbaf090c73cef8794813.tar.gz freebsd-ports-gnome-c8412085cfaa03735618cbaf090c73cef8794813.tar.zst freebsd-ports-gnome-c8412085cfaa03735618cbaf090c73cef8794813.zip |
Do not define USE_LANG if it is already set.
Diffstat (limited to 'editors/openoffice-1.0')
-rw-r--r-- | editors/openoffice-1.0/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/openoffice-1.0/Makefile b/editors/openoffice-1.0/Makefile index b18e237095a2..d98eda3309ef 100644 --- a/editors/openoffice-1.0/Makefile +++ b/editors/openoffice-1.0/Makefile @@ -76,8 +76,10 @@ CONFIGURE_ARGS+= --with-lang=${LANG_CONFIGURE_ARG},ENUS USE_LANG= en_US.ISO8859-15 LANG_LIST= en_US.ISO8859-15 en_US.ISO8859-1 US-ASCII .else +.if !defined(USE_LANG) USE_LANG= ${LANG} .endif +.endif LANG_SORTED= `${ECHO} ${LANG_LIST} | ${TR} " " "\n" | ${PASTE} -d " " - -` |