[34516] trunk/base/src/port1.0/portlint.tcl

afb at macports.org afb at macports.org
Wed Feb 27 02:43:26 PST 2008


Revision: 34516
          http://trac.macosforge.org/projects/macports/changeset/34516
Author:   afb at macports.org
Date:     2008-02-27 02:43:25 -0800 (Wed, 27 Feb 2008)

Log Message:
-----------
actually get all dependencies, and not just the last one

Modified Paths:
--------------
    trunk/base/src/port1.0/portlint.tcl

Modified: trunk/base/src/port1.0/portlint.tcl
===================================================================
--- trunk/base/src/port1.0/portlint.tcl	2008-02-27 10:20:19 UTC (rev 34515)
+++ trunk/base/src/port1.0/portlint.tcl	2008-02-27 10:43:25 UTC (rev 34516)
@@ -418,9 +418,9 @@
     }
 
     set all_depends {}
-    if {[info exists depends_lib]} { lappend all_depends $depends_lib }
-    if {[info exists depends_build]} { lappend all_depends $depends_build }
-    if {[info exists depends_run]} { lappend all_depends $depends_run }
+    if {[info exists depends_lib]} { eval "lappend all_depends $depends_lib" }
+    if {[info exists depends_build]} { eval "lappend all_depends $depends_build" }
+    if {[info exists depends_run]} { eval "lappend all_depends $depends_run" }
     foreach depspec $all_depends {
         set dep [lindex [split $depspec :] end]
         if {[catch {set res [mport_search "^$dep\$"]} error]} {

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20080227/1fb657e5/attachment.html 


More information about the macports-changes mailing list