blob: a2cdbf0c13d9189318370a67991dc94ccdf9dc1f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Make plugin look in its private Frameworks directory for these frameworks.
# Cg.framework
/usr/bin/install_name_tool -change \
@executable_path/../Library/Frameworks/Cg.framework/Cg \
@loader_path/../Frameworks/Cg.framework/Cg \
"${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}"
|