diff options
author | bapt <bapt@FreeBSD.org> | 2013-05-03 16:13:43 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-05-03 16:13:43 +0800 |
commit | 132b4ab986ae9c0396c6a1edecdfa073b51a0b6c (patch) | |
tree | ef569e2c576738d30ff277b83305d7d1a2c36f5b /japanese | |
parent | 34dbf547bf30944bb57ea285de1b5b06752c44d9 (diff) | |
download | freebsd-ports-gnome-132b4ab986ae9c0396c6a1edecdfa073b51a0b6c.tar.gz freebsd-ports-gnome-132b4ab986ae9c0396c6a1edecdfa073b51a0b6c.tar.zst freebsd-ports-gnome-132b4ab986ae9c0396c6a1edecdfa073b51a0b6c.zip |
Fix syntax error
Spotted by: bmake exp-run
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/kinput2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/japanese/kinput2/Makefile b/japanese/kinput2/Makefile index 0c3ef21179ad..2ec396758353 100644 --- a/japanese/kinput2/Makefile +++ b/japanese/kinput2/Makefile @@ -76,9 +76,9 @@ PLIST.WNN= lib/X11/ccdef/ccdef.kinput2 \ .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MFREEWNN) || \ - ${PORT_OPTIONS:MWNN6) || \ - ${PORT_OPTIONS:MWNN7) +.if ${PORT_OPTIONS:MFREEWNN} || \ + ${PORT_OPTIONS:MWNN6} || \ + ${PORT_OPTIONS:MWNN7} PLIST_ALL+= ${PLIST.WNN} .endif |