Initial Commit
This commit is contained in:
15
openssl-1.0.2f/tools/c89.sh
Executable file
15
openssl-1.0.2f/tools/c89.sh
Executable file
@@ -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
|
||||
Reference in New Issue
Block a user