New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79678


Ignore:
Timestamp:
06/23/11 01:20:14 (4 years ago)
Author:
jeremyhu@…
Message:

wine-crossover-games: Use the absolute path for dylib references rather than a relative path

I'm not bumping the revision since this should not have an impact on end users
who use the wine script which sets DYLD_FALLBACK_LIBRARY_PATH. This change
primarily impacts developers interested in debugging wine by eliminating
an extra hoop to jump through.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/x11/wine-crossover-games/Portfile

    r79643 r79678  
    189189    xinstall -d ${destroot}${prefix}/libexec/wine 
    190190    file rename ${destroot}${prefix}/bin/wineloader ${destroot}${prefix}/libexec/wine/wine 
    191     system "install_name_tool -change @executable_path/../lib/libwine.1.dylib @executable_path/../../lib/libwine.1.dylib ${destroot}${prefix}/libexec/wine/wine" 
     191    system "install_name_tool -change @executable_path/../lib/libwine.1.dylib ${prefix}/lib/libwine.1.dylib ${destroot}${prefix}/libexec/wine/wine" 
    192192 
    193193    foreach dll [glob ${destroot}${prefix}/lib/wine/*.so] { 
    194         system "install_name_tool -change @executable_path/../lib/libwine.1.dylib @loader_path/../libwine.1.dylib ${dll}" 
     194        system "install_name_tool -change @executable_path/../lib/libwine.1.dylib ${prefix}/lib/libwine.1.dylib ${dll}" 
    195195    } 
    196196 
Note: See TracChangeset for help on using the changeset viewer.