diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2012-09-24 21:21:37 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2012-09-24 21:21:37 +0000 |
commit | efdddb64ce3816f13ae745bc02f10543ba43d92a (patch) | |
tree | 7f27ba2c24ada8907cf12eeb53dec7892010ce18 /audio/freeswitch-sounds/Makefile | |
parent | Update to 4.7. (diff) |
- use {} instead () around .if ${PORT_OPTONS:M...}
Diffstat (limited to 'audio/freeswitch-sounds/Makefile')
-rw-r--r-- | audio/freeswitch-sounds/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/freeswitch-sounds/Makefile b/audio/freeswitch-sounds/Makefile index d14f17d52c77..894c0b2b5b54 100644 --- a/audio/freeswitch-sounds/Makefile +++ b/audio/freeswitch-sounds/Makefile @@ -97,7 +97,7 @@ SCALE=0.2 .endif .for opt in ${ALL_OPTIONS} -.if $(PORT_OPTIONS:M${opt}) +.if ${PORT_OPTIONS:M${opt}} PLIST_SUB+= ${opt}="" .else PLIST_SUB+= ${opt}="@comment " |