What should qtnamesrc contain when is_brew_lib(dep) returned True?
For example when dep is /opt/homebrew/opt/openssl@3/lib/libssl.3.dylib, it tries to copy <qtpath>/lib/libssl3.dylib.framework/libssl.3.dylib into the Frameworks directory inside the bundle.
|
qtnamesrc = os.path.join(GlobalConfig.qtpath, 'lib', '{0}.framework'. |
Shouldn't qtnamesrc = dep work?
What should
qtnamesrccontain whenis_brew_lib(dep)returnedTrue?For example when
depis/opt/homebrew/opt/openssl@3/lib/libssl.3.dylib, it tries to copy<qtpath>/lib/libssl3.dylib.framework/libssl.3.dylibinto the Frameworks directory inside the bundle.macdeployqtfix/macdeployqtfix.py
Line 272 in df88850
Shouldn't
qtnamesrc = depwork?