diff --git a/extract-files.sh b/extract-files.sh index 0e65d3c..c7bd91e 100644 --- a/extract-files.sh +++ b/extract-files.sh @@ -6,18 +6,6 @@ # SPDX-License-Identifier: Apache-2.0 # -function blob_fixup() { - case "${1}" in - vendor/lib/libsample1.so) - sed -i 's|/data/misc/sample1|/data/misc/sample2|g' "${2}" - ;; - vendor/lib64/libsample2.so) - "${PATCHELF}" --remove-needed "libsample3.so" "${2}" - "${PATCHELF}" --add-needed "libsample4.so" "${2}" - ;; - esac -} - # If we're being sourced by the common script that we called, # stop right here. No need to go down the rabbit hole. if [ "${BASH_SOURCE[0]}" != "${0}" ]; then