mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-03-15 11:31:33 +00:00
4 lines
176 B
Bash
4 lines
176 B
Bash
#!/bin/sh
|
|
OZWPATH=`otool -L $1 | grep libopenzwave | grep compatibility | awk '{print $1}'`
|
|
echo $OZWPATH
|
|
install_name_tool -change $OZWPATH @rpath/libopenzwave-1.6.dylib $1
|