parent
c05940edc7
commit
1d4581c2dd
@ -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
|
Loading…
Reference in New Issue