Josh Coalson | 5859e81 | 2001-07-16 18:01:08 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | # | ||||
3 | # libtool assumes that the compiler can handle the -fPIC flag | ||||
4 | # This isn't always true (for example, nasm can't handle it) | ||||
5 | command="" | ||||
6 | while [ $1 ]; do | ||||
Josh Coalson | 765ff50 | 2002-08-27 05:46:11 +0000 | [diff] [blame] | 7 | if [ "$1" != "-fPIC" ]; then |
8 | if [ "$1" != "-DPIC" ]; then | ||||
9 | command="$command $1" | ||||
10 | fi | ||||
11 | fi | ||||
12 | shift | ||||
Josh Coalson | 5859e81 | 2001-07-16 18:01:08 +0000 | [diff] [blame] | 13 | done |
14 | echo $command | ||||
15 | exec $command |