source-engine/thirdparty/openssl/tools/c89.sh

16 lines
211 B
Bash
Raw Normal View History

2020-10-22 17:43:01 +00:00
#!/bin/sh -k
#
# Re-order arguments so that -L comes first
#
opts=""
lopts=""
for arg in $* ; do
case $arg in
-L*) lopts="$lopts $arg" ;;
*) opts="$opts $arg" ;;
esac
done
c89 $lopts $opts