[101464] trunk/dports/_resources/port1.0/group/ compiler_blacklist_versions-1.0.tcl

michaelld at macports.org michaelld at macports.org
Fri Jan 11 06:18:34 PST 2013


Revision: 101464
          https://trac.macports.org/changeset/101464
Author:   michaelld at macports.org
Date:     2013-01-11 06:18:33 -0800 (Fri, 11 Jan 2013)
Log Message:
-----------
compiler_blacklist_versions : change fancy ``s to basic "s, as is used everywhere else.

Modified Paths:
--------------
    trunk/dports/_resources/port1.0/group/compiler_blacklist_versions-1.0.tcl

Modified: trunk/dports/_resources/port1.0/group/compiler_blacklist_versions-1.0.tcl
===================================================================
--- trunk/dports/_resources/port1.0/group/compiler_blacklist_versions-1.0.tcl	2013-01-11 14:16:18 UTC (rev 101463)
+++ trunk/dports/_resources/port1.0/group/compiler_blacklist_versions-1.0.tcl	2013-01-11 14:18:33 UTC (rev 101464)
@@ -84,7 +84,7 @@
 
 proc compiler_blacklist_versions._matches_all_versions {compiler comparisons} {
     if {[llength ${comparisons}] % 2} {
-        return -code error "invalid/incomplete comparison specification “${comparisons}”"
+        return -code error "invalid/incomplete comparison specification \"{comparisons}\""
     }
     while {[llength ${comparisons}] > 0} {
         set comparison_operator [lindex ${comparisons} 0]
@@ -121,14 +121,14 @@
             set re {build ([0-9.]+)}
         }
         default {
-            return -code error "don't know how to determine build number of compiler “${compiler}”"
+            return -code error "don't know how to determine build number of compiler \"${compiler}\""
         }
     }
     set cc [portconfigure::configure_get_compiler cc ${compiler}]
     if {![file exists ${cc}]} return
     regexp ${re} [exec ${cc} -v 2>@1] -> compiler_version
     if {![info exists compiler_version]} {
-        return -code error "couldn't determine build number of compiler “${compiler}”"
+        return -code error "couldn't determine build number of compiler \"${compiler}\""
     }
     set compiler_blacklist_versions._compiler_versions(${compiler}) ${compiler_version}
     return ${compiler_version}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130111/28d6f6f1/attachment.html>


More information about the macports-changes mailing list