Date: Mon, 24 Sep 2012 21:21:38 +0000 (UTC) From: Olli Hauer <ohauer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r304799 - in head/audio: freeswitch-music freeswitch-sounds Message-ID: <201209242121.q8OLLcue002094@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ohauer Date: Mon Sep 24 21:21:37 2012 New Revision: 304799 URL: http://svn.freebsd.org/changeset/ports/304799 Log: - use {} instead () around .if ${PORT_OPTONS:M...} Modified: head/audio/freeswitch-music/Makefile head/audio/freeswitch-sounds/Makefile Modified: head/audio/freeswitch-music/Makefile ============================================================================== --- head/audio/freeswitch-music/Makefile Mon Sep 24 21:14:35 2012 (r304798) +++ head/audio/freeswitch-music/Makefile Mon Sep 24 21:21:37 2012 (r304799) @@ -53,7 +53,7 @@ DISTFILES+= freeswitch-sounds-music-4800 .endif .for opt in ${ALL_OPTIONS} -.if $(PORT_OPTIONS:M${opt}) +.if ${PORT_OPTIONS:M${opt}} PLIST_SUB+= ${opt}="" .else PLIST_SUB+= ${opt}="@comment " Modified: head/audio/freeswitch-sounds/Makefile ============================================================================== --- head/audio/freeswitch-sounds/Makefile Mon Sep 24 21:14:35 2012 (r304798) +++ head/audio/freeswitch-sounds/Makefile Mon Sep 24 21:21:37 2012 (r304799) @@ -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 "
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209242121.q8OLLcue002094>