You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
192 B
9 lines
192 B
10 years ago
|
#!/bin/bash
|
||
|
|
||
|
ETH_DEPENDENCY_SOURCE_DIR=$1
|
||
|
ETH_DEPENDENCY_INSTALL_DIR=$2
|
||
|
|
||
|
SNAPPY_DYLIB=${ETH_DEPENDENCY_INSTALL_DIR}/lib/libsnappy.dylib
|
||
|
install_name_tool -id ${SNAPPY_DYLIB} ${SNAPPY_DYLIB}
|
||
|
|