mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
018e085d44
runtest: do not depend on busybox.links
19 lines
317 B
Bash
Executable File
19 lines
317 B
Bash
Executable File
#!/bin/sh
|
|
|
|
debug=false
|
|
|
|
try() {
|
|
added="$1"
|
|
shift
|
|
$debug && echo "Trying: $* $added"
|
|
"$@" $added >/dev/null 2>&1 \
|
|
&& exit 0
|
|
}
|
|
|
|
try "" "$@"
|
|
try "-lm" "$@"
|
|
try "-lcrypt" "$@"
|
|
try "-Wl,--start-group -lcrypt -lm -Wl,--end-group" "$@"
|
|
# It failed. Rerun & let people see the error messages
|
|
"$@" $added
|