This change makes it so that make invocations can specify LD_DYLIB_INSTALL_NAME. At this time, this is done solely so that homebrew can set the value properly from the outset. Without this, homebew will modify the library after make has completed, but modifying a library after code signing means an error will occur when it's loaded at runtime.
This change makes it so that
make
invocations can specifyLD_DYLIB_INSTALL_NAME
. At this time, this is done solely so that homebrew can set the value properly from the outset. Without this, homebew will modify the library aftermake
has completed, but modifying a library after code signing means an error will occur when it's loaded at runtime.