[138123] trunk/dports/net/curl/Portfile

ryandesign at macports.org ryandesign at macports.org
Mon Jun 29 14:44:56 PDT 2015


Revision: 138123
          https://trac.macports.org/changeset/138123
Author:   ryandesign at macports.org
Date:     2015-06-29 14:44:55 -0700 (Mon, 29 Jun 2015)
Log Message:
-----------
curl: use expand operator instead of eval

Modified Paths:
--------------
    trunk/dports/net/curl/Portfile

Modified: trunk/dports/net/curl/Portfile
===================================================================
--- trunk/dports/net/curl/Portfile	2015-06-29 20:32:08 UTC (rev 138122)
+++ trunk/dports/net/curl/Portfile	2015-06-29 21:44:55 UTC (rev 138123)
@@ -110,10 +110,10 @@
             ${destroot}${docdir}
         xinstall -m 0644 ${worksrcpath}/docs/libcurl/libcurl.m4 \
             ${destroot}${prefix}/share/aclocal/
-        eval xinstall -m 0644 [glob ${worksrcpath}/docs/*.html] ${destroot}${docdir}/html
-        eval xinstall -m 0644 [glob ${worksrcpath}/docs/libcurl/*.html] ${destroot}${docdir}/html/libcurl
-        eval xinstall -m 0644 [glob ${worksrcpath}/docs/*.pdf] ${destroot}${docdir}/pdf
-        eval xinstall -m 0644 [glob ${worksrcpath}/docs/libcurl/*.pdf] ${destroot}${docdir}/pdf/libcurl
+        xinstall -m 0644 {*}[glob ${worksrcpath}/docs/*.html] ${destroot}${docdir}/html
+        xinstall -m 0644 {*}[glob ${worksrcpath}/docs/libcurl/*.html] ${destroot}${docdir}/html/libcurl
+        xinstall -m 0644 {*}[glob ${worksrcpath}/docs/*.pdf] ${destroot}${docdir}/pdf
+        xinstall -m 0644 {*}[glob ${worksrcpath}/docs/libcurl/*.pdf] ${destroot}${docdir}/pdf/libcurl
     }
 
     variant ares description {Support resolving names asynchronously} {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150629/9abdfb45/attachment.html>


More information about the macports-changes mailing list