Changes between Initial Version and Version 2 of Ticket #32517


Ignore:
Timestamp:
Dec 13, 2011, 3:53:42 PM (12 years ago)
Author:
michaelld (Michael Dickens)
Comment:

I just poked around a bit & found out that this issue is with +debug only. So, I've changed this ticket to reflect this new info. The Portfile patch won't work for this case, but it's a pretty simple change to check for that variant. It would be nice if the release and debug libraries were consistently named (e.g., libfoo.dylib and libfoo_debug.dylib), but that would require more post-destroot messing.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32517

    • Property Summary changed from qhull post-destroot links wrong library to qhull +debug post-destroot links wrong library
  • Ticket #32517 – Description

    initial v2  
    1 In r87709, various symlinks were added to the post-destroot phase.  The DYLIB is currently named "libqhull_d6.dylib", while that revision of the Portfile (for whatever reason) used "libqhull6.dylib". This issue is fixed by "s/libqhull6/libqhull_d6/g", which changes just the symlink on line 41. I'm attaching a patch.
     1In r87709, various symlinks were added to the post-destroot phase.  When installed with +debug, the DYLIB is currently named "libqhull_d6.dylib", while that revision of the Portfile (for whatever reason) used "libqhull6.dylib". This issue is fixed by "s/libqhull6/libqhull_d6/g", but for the +debug variant only, which changes just the symlink on line 41.