Fixed to work on Solaris x86
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4023
This commit is contained in:
parent
df7866c435
commit
48f77300a1
1 changed files with 7 additions and 4 deletions
|
@ -4,11 +4,14 @@
|
||||||
# This isn't always true (for example, nasm can't handle it)
|
# This isn't always true (for example, nasm can't handle it)
|
||||||
command=""
|
command=""
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
if [ "$1" != "-fPIC" ]; then
|
case "$1" in
|
||||||
if [ "$1" != "-DPIC" ]; then
|
-?PIC)
|
||||||
|
# Ignore -fPIC and -DPIC options
|
||||||
|
;;
|
||||||
|
*)
|
||||||
command="$command $1"
|
command="$command $1"
|
||||||
fi
|
;;
|
||||||
fi
|
esac
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
echo $command
|
echo $command
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue