diff options
author | mbr <mbr@FreeBSD.org> | 2002-06-18 14:01:16 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2002-06-18 14:01:16 +0800 |
commit | cd9be87f0419537d12e56bab5c0f4518ec699ff7 (patch) | |
tree | 7f6782652eabbc759894905b925f299588f2193f /editors | |
parent | 31c8f0828c96092fafa3553b5df5bd4e327fac97 (diff) | |
download | freebsd-ports-gnome-cd9be87f0419537d12e56bab5c0f4518ec699ff7.tar.gz freebsd-ports-gnome-cd9be87f0419537d12e56bab5c0f4518ec699ff7.tar.zst freebsd-ports-gnome-cd9be87f0419537d12e56bab5c0f4518ec699ff7.zip |
Fix variable
Submitted by: Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/openoffice-1.0/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice.org-1.0/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/openoffice-1.0/Makefile b/editors/openoffice-1.0/Makefile index db5af5866581..6481466ae503 100644 --- a/editors/openoffice-1.0/Makefile +++ b/editors/openoffice-1.0/Makefile @@ -30,7 +30,7 @@ PKGNAMEPREFIX= ${LANG_PKGNAME}- # # LANG_CONFIGURE_ARG is missing for the german port # -.if defined(LANG_EXT) && LANG_EXT!=49 +.if defined(LANG_EXT) && ${LANG_EXT}!=49 CONFIGURE_ARGS+= --with-lang=${LANG_CONFIGURE_ARG} .endif diff --git a/editors/openoffice.org-1.0/Makefile b/editors/openoffice.org-1.0/Makefile index db5af5866581..6481466ae503 100644 --- a/editors/openoffice.org-1.0/Makefile +++ b/editors/openoffice.org-1.0/Makefile @@ -30,7 +30,7 @@ PKGNAMEPREFIX= ${LANG_PKGNAME}- # # LANG_CONFIGURE_ARG is missing for the german port # -.if defined(LANG_EXT) && LANG_EXT!=49 +.if defined(LANG_EXT) && ${LANG_EXT}!=49 CONFIGURE_ARGS+= --with-lang=${LANG_CONFIGURE_ARG} .endif diff --git a/editors/openoffice/Makefile b/editors/openoffice/Makefile index db5af5866581..6481466ae503 100644 --- a/editors/openoffice/Makefile +++ b/editors/openoffice/Makefile @@ -30,7 +30,7 @@ PKGNAMEPREFIX= ${LANG_PKGNAME}- # # LANG_CONFIGURE_ARG is missing for the german port # -.if defined(LANG_EXT) && LANG_EXT!=49 +.if defined(LANG_EXT) && ${LANG_EXT}!=49 CONFIGURE_ARGS+= --with-lang=${LANG_CONFIGURE_ARG} .endif |