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.
8 lines
192 B
8 lines
192 B
#!/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}
|
|
|
|
|