Ticket #15742: SSHKeychain.diff

File SSHKeychain.diff, 629 bytes (added by ryandesign (Ryan Carsten Schmidt), 16 years ago)
  • Portfile

     
    4848    xcode.build.settings-append     ARCHS=${arch}
    4949    xcode.destroot.settings-append  ARCHS=${arch}
    5050}
     51
     52post-destroot {
     53    # The directories inside the application bundle get created with
     54    # 555 permissions which prevents MacPorts from being able to copy
     55    # them from the destroot to the install area.
     56    fs-traverse dir ${destroot} {
     57        if {[file isdirectory ${dir}]} {
     58            file attributes ${dir} -permissions 0755
     59        }
     60    }
     61}