From 8a67087e2194acf3d0037097b0cd7f1e5477e401 Mon Sep 17 00:00:00 2001 From: Joshua Root Date: Mon, 9 Jul 2018 22:41:00 +1000 Subject: [PATCH] reclaim: fix quoting of code passed to eval Closes: https://trac.macports.org/ticket/56786 --- src/macports1.0/reclaim.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macports1.0/reclaim.tcl b/src/macports1.0/reclaim.tcl index d73f408729..1c07d4568b 100644 --- a/src/macports1.0/reclaim.tcl +++ b/src/macports1.0/reclaim.tcl @@ -192,7 +192,7 @@ namespace eval reclaim { foreach file [concat $distfiles $patchfiles] { # split distfile into filename and disttag - set distfile [$workername eval "getdistname $file"] + set distfile [$workername eval [list getdistname $file]] set root_path [file join $root_dist $dist_subdir $distfile] set home_path [file join $home_dist $dist_subdir $distfile]