mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-16 22:46:51 +08:00
17 lines
571 B
Bash
Executable File
17 lines
571 B
Bash
Executable File
#! /bin/sh -e
|
|
SCRATCH=scratch/$(basename "$0" .sh)
|
|
|
|
rm -rf "${SCRATCH}"
|
|
mkdir -p "${SCRATCH}"
|
|
|
|
cp main "${SCRATCH}"/
|
|
SOME_PATH=$(pwd)/${SCRATCH}/some-path
|
|
printf "%s" "$SOME_PATH" >> "${SCRATCH}"/add-rpath
|
|
|
|
../src/patchelf --print-rpath "${SCRATCH}"/main | grep "$SOME_PATH" && exit 1
|
|
../src/patchelf --add-rpath @"${SCRATCH}"/add-rpath "${SCRATCH}"/main
|
|
../src/patchelf --print-rpath "${SCRATCH}"/main | grep "$SOME_PATH"
|
|
|
|
# should print error message and fail
|
|
../src/patchelf --set-rpath @"${SCRATCH}"/does-not-exist "${SCRATCH}"/main 2>&1 | grep "getting info about"
|