Sign in
flutter
/
third_party
/
openssl
/
4a71b90debd3db4bade3792d249272e2e52b2016
/
.
/
util
/
ranlib.sh
blob: 543f712c6ba7b87fd1036003c339b75462ca29df [
file
] [
log
] [
blame
]
#!/bin/sh
cwd
=
`pwd`
cd
/
tmp
if
[
-
s
/
bin
/
ranlib
]
;
then
RL
=/
bin
/
ranlib
else
if
[
-
s
/
usr
/
bin
/
ranlib
]
;
then
RL
=/
usr
/
bin
/
ranlib
fi
fi
if
[
"x$RL"
!=
"x"
]
then
case
"$1"
in
/*)
$RL
"$1"
;;
*)
$RL
"$cwd/$1"
;;
esac
fi