]> git.ipfire.org Git - thirdparty/openssl.git/blob - tools/c89.sh
Updates NEWS for new release
[thirdparty/openssl.git] / tools / c89.sh
1 #!/bin/sh -k
2 #
3 # Re-order arguments so that -L comes first
4 #
5 opts=""
6 lopts=""
7
8 for arg in $* ; do
9 case $arg in
10 -L*) lopts="$lopts $arg" ;;
11 *) opts="$opts $arg" ;;
12 esac
13 done
14
15 c89 $lopts $opts