[69451] trunk/base/src/package1.0/portarchive.tcl

jmr at macports.org jmr at macports.org
Tue Jul 6 10:02:36 PDT 2010


Revision: 69451
          http://trac.macports.org/changeset/69451
Author:   jmr at macports.org
Date:     2010-07-06 10:02:34 -0700 (Tue, 06 Jul 2010)
Log Message:
-----------
system "mkdir ..." -> file mkdir

Modified Paths:
--------------
    trunk/base/src/package1.0/portarchive.tcl

Modified: trunk/base/src/package1.0/portarchive.tcl
===================================================================
--- trunk/base/src/package1.0/portarchive.tcl	2010-07-06 15:03:18 UTC (rev 69450)
+++ trunk/base/src/package1.0/portarchive.tcl	2010-07-06 17:02:34 UTC (rev 69451)
@@ -292,12 +292,12 @@
 
     # Create archive destination path (if needed)
     if {![file isdirectory ${archive.fulldestpath}]} {
-        system "mkdir -p ${archive.fulldestpath}"
+        file mkdir ${archive.fulldestpath}
     }
 
     # Create (if no files) destroot for archiving
     if {![file isdirectory ${destpath}]} {
-        system "mkdir -p ${destpath}"
+        file mkdir ${destpath}
     }
 
     # Copy state file into destroot for archiving
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100706/198ea245/attachment.html>


More information about the macports-changes mailing list