mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
don't pass -rpath
with -r
, as they conflict (#4)
This commit is contained in:
parent
e1d2ab4f47
commit
77a44f7424
2 changed files with 11 additions and 2 deletions
|
@ -1,11 +1,19 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
exe="$(basename $0)"
|
exe=$(basename "$0")
|
||||||
|
|
||||||
if test -z "$TEA_PREFIX"
|
if test -z "$TEA_PREFIX"
|
||||||
then
|
then
|
||||||
echo '$TEA_PREFIX mysteriously unset' >&2
|
echo 'TEA_PREFIX mysteriously unset' >&2
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
|
# At a minimum, `ld` will complain if you mix the `-r` and `-rpath` flags,
|
||||||
|
# so if any argument to this script is `-r`, we just pass through without
|
||||||
|
# additions.
|
||||||
|
for word in "$@"; do
|
||||||
|
if test "$word" = "-r"; then
|
||||||
|
exec /usr/bin/"$exe" "$@"
|
||||||
|
fi
|
||||||
|
done
|
||||||
exec /usr/bin/"$exe" "$@" -rpath "$TEA_PREFIX"
|
exec /usr/bin/"$exe" "$@" -rpath "$TEA_PREFIX"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -41,3 +41,4 @@ build:
|
||||||
test: |
|
test: |
|
||||||
cc --version
|
cc --version
|
||||||
ld --help
|
ld --help
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue