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