svn commit: r304799 - in head/audio: freeswitch-music freeswitch-sounds

Olli Hauer ohauer at FreeBSD.org
Mon Sep 24 21:21:38 UTC 2012


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 "



More information about the svn-ports-all mailing list