diff options
author | ohauer <ohauer@FreeBSD.org> | 2012-09-25 05:21:37 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2012-09-25 05:21:37 +0800 |
commit | 05d76e8f12626f74e9f9f75382e47cd3d1b7214c (patch) | |
tree | 7f27ba2c24ada8907cf12eeb53dec7892010ce18 | |
parent | 030493cb6703bc36c8607f7d3e1926db07a47deb (diff) | |
download | freebsd-ports-gnome-05d76e8f12626f74e9f9f75382e47cd3d1b7214c.tar.gz freebsd-ports-gnome-05d76e8f12626f74e9f9f75382e47cd3d1b7214c.tar.zst freebsd-ports-gnome-05d76e8f12626f74e9f9f75382e47cd3d1b7214c.zip |
- use {} instead () around .if ${PORT_OPTONS:M...}
-rw-r--r-- | audio/freeswitch-music/Makefile | 2 | ||||
-rw-r--r-- | audio/freeswitch-sounds/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/audio/freeswitch-music/Makefile b/audio/freeswitch-music/Makefile index dd11866be054..1522564e10e4 100644 --- a/audio/freeswitch-music/Makefile +++ b/audio/freeswitch-music/Makefile @@ -53,7 +53,7 @@ DISTFILES+= freeswitch-sounds-music-48000-${DISTVERSION}${EXTRACT_SUFX} .endif .for opt in ${ALL_OPTIONS} -.if $(PORT_OPTIONS:M${opt}) +.if ${PORT_OPTIONS:M${opt}} PLIST_SUB+= ${opt}="" .else PLIST_SUB+= ${opt}="@comment " 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 " |