[143495] trunk/dports/devel/docker-machine/Portfile

sean at macports.org sean at macports.org
Sun Dec 13 14:22:19 PST 2015


Revision: 143495
          https://trac.macports.org/changeset/143495
Author:   sean at macports.org
Date:     2015-12-13 14:22:18 -0800 (Sun, 13 Dec 2015)
Log Message:
-----------
docker-machine: fix glob expression

Modified Paths:
--------------
    trunk/dports/devel/docker-machine/Portfile

Modified: trunk/dports/devel/docker-machine/Portfile
===================================================================
--- trunk/dports/devel/docker-machine/Portfile	2015-12-13 20:45:09 UTC (rev 143494)
+++ trunk/dports/devel/docker-machine/Portfile	2015-12-13 22:22:18 UTC (rev 143495)
@@ -34,12 +34,12 @@
 
 destroot {
     xinstall -d ${destroot}${prefix}/bin
-    eval xinstall -m 755 [glob ${worksrcpath}/bin/*] ${destroot}${prefix}/bin/
+    xinstall -m 755 {*}[glob ${worksrcpath}/bin/*] ${destroot}${prefix}/bin/
 
     if {[variant_isset bash_completion]} {
         set completions_path ${prefix}/share/bash-completion/completions
         xinstall -d ${destroot}${completions_path}
-        eval xinstall -m 644 [glob ${worksrcpath}/contrib/completion/bash/*.bash] ${destroot}${completions_path}/
+        xinstall -m 644 {*}[glob ${worksrcpath}/contrib/completion/bash/*.bash] ${destroot}${completions_path}/
     }
 }
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20151213/46900d1a/attachment.html>


More information about the macports-changes mailing list