[117949] trunk/dports/multimedia/ffmpeg/Portfile

devans at macports.org devans at macports.org
Mon Mar 17 10:07:15 PDT 2014


Revision: 117949
          https://trac.macports.org/changeset/117949
Author:   devans at macports.org
Date:     2014-03-17 10:07:15 -0700 (Mon, 17 Mar 2014)
Log Message:
-----------
ffmpeg: fix tcl syntax error that breaks port on 10.6 (#42891).

Modified Paths:
--------------
    trunk/dports/multimedia/ffmpeg/Portfile

Modified: trunk/dports/multimedia/ffmpeg/Portfile
===================================================================
--- trunk/dports/multimedia/ffmpeg/Portfile	2014-03-17 17:06:49 UTC (rev 117948)
+++ trunk/dports/multimedia/ffmpeg/Portfile	2014-03-17 17:07:15 UTC (rev 117949)
@@ -138,7 +138,7 @@
 
     # FIXME: use ${os.minor} once it hits stable base
     # VDA (video hardware acceleration, mostly H264) is only supported on 10.6.3+
-    if {${os.major} > 10 || {${os.major} == 10 && [lindex [split ${os.version} .] 1] >= 3}} {
+    if {${os.major} > 10 || (${os.major} == 10 && [lindex [split ${os.version} .] 1] >= 3)} {
         configure.args-delete --disable-vda
         configure.args-append --enable-vda
     }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140317/aa7e62c2/attachment-0001.html>


More information about the macports-changes mailing list