Ticket #12218: macports-ccachetrace.patch

File macports-ccachetrace.patch, 855 bytes (added by afb@…, 17 years ago)

macports-ccachetrace.patch

  • src/port1.0/porttrace.tcl

     
    7171                        # /dev/null
    7272                        # /dev/tty
    7373                        # /Library/Caches/com.apple.Xcode
    74                         set trace_sandboxbounds "/tmp:/private/tmp:/var/tmp:/private/var/tmp:/dev/null:/dev/tty:/Library/Caches/com.apple.Xcode:${workpath}"
     74                        # $CCACHE_DIR
     75                        # $HOMEDIR/.ccache
     76                        set trace_sandboxbounds "/tmp:/private/tmp:/var/tmp:/private/var/tmp:/dev/null:/dev/tty:/Library/Caches/com.apple.Xcode:$env(HOME)/.ccache:${workpath}"
    7577                        if {[info exists env(TMPDIR)]} {
    7678                                set trace_sandboxbounds "${trace_sandboxbounds}:$env(TMPDIR)"
    7779                        }
     80                        if {[info exists env(CCACHE_DIR)]} {
     81                                set trace_sandboxbounds "${trace_sandboxbounds}:$env(CCACHE_DIR)"
     82                        }
    7883                }
    7984        }
    8085}