[107674] trunk/base/src/port1.0/portsandbox.tcl

jmr at macports.org jmr at macports.org
Wed Jul 3 23:41:10 PDT 2013


Revision: 107674
          https://trac.macports.org/changeset/107674
Author:   jmr at macports.org
Date:     2013-07-03 23:41:10 -0700 (Wed, 03 Jul 2013)
Log Message:
-----------
temporary workaround for pkg target failure on 10.8: disable sandboxing for that target

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

Modified: trunk/base/src/port1.0/portsandbox.tcl
===================================================================
--- trunk/base/src/port1.0/portsandbox.tcl	2013-07-04 06:27:52 UTC (rev 107673)
+++ trunk/base/src/port1.0/portsandbox.tcl	2013-07-04 06:41:10 UTC (rev 107674)
@@ -65,7 +65,13 @@
             set allow_dirs [list $distpath]
         }
         pkg {
-            set allow_dirs [list ${package.destpath}]
+            if {${os.major} == 12} {
+                # FIXME: fails on Mountain Lion with the current profile
+                set portsandbox_profile ""
+                return
+            } else {
+                set allow_dirs [list ${package.destpath}]
+            }
         }
         rpm -
         srpm {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130703/e58ad08f/attachment.html>


More information about the macports-changes mailing list