From 52261db09ef9dbf5abc95baed22722c5c332f9f7 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Tue, 20 Jun 2006 17:33:26 +0000 Subject: Pulling OpenSSL 0.9.8b into trunk svn path=/openssl/trunk; revision=3 --- openssl/trunk/tools/c89.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 openssl/trunk/tools/c89.sh (limited to 'openssl/trunk/tools/c89.sh') diff --git a/openssl/trunk/tools/c89.sh b/openssl/trunk/tools/c89.sh new file mode 100755 index 00000000..b25c9fda --- /dev/null +++ b/openssl/trunk/tools/c89.sh @@ -0,0 +1,15 @@ +#!/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 -- cgit v1.2.3