Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn>2002-02-15 10:41:43 +0300
committercvs2svn <cvs2svn>2002-02-15 10:41:43 +0300
commit5ec27eacf049e8665903e4bead642d1abdb4864b (patch)
treed436df837c5df93a62a73550a1adf288a3efa0bc /tools
parent30b5ce14d8c5b620893462b09f84c1b54b943234 (diff)
parentf0d6ee6be8b2faac9fa37be0086fafbc001307f3 (diff)
This commit was manufactured by cvs2svn to create branch 'OpenSSL-engine-
0_9_6-stable'.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/c89.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/c89.sh b/tools/c89.sh
new file mode 100755
index 0000000000..b25c9fda2d
--- /dev/null
+++ b/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