File: c89.sh

package info (click to toggle)
openssl 0.9.8c-4etch3%2Bm68k1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 19,320 kB
  • ctags: 26,390
  • sloc: ansic: 203,562; perl: 18,445; makefile: 10,732; asm: 10,675; cpp: 4,379; sh: 2,925; lisp: 23
file content (15 lines) | stat: -rwxr-xr-x 211 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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