Commit 48f77300 authored by Sam Lantinga's avatar Sam Lantinga

Fixed to work on Solaris x86

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4023
parent df7866c4
......@@ -4,11 +4,14 @@
# This isn't always true (for example, nasm can't handle it)
command=""
while [ $# -gt 0 ]; do
if [ "$1" != "-fPIC" ]; then
if [ "$1" != "-DPIC" ]; then
case "$1" in
-?PIC)
# Ignore -fPIC and -DPIC options
;;
*)
command="$command $1"
fi
fi
;;
esac
shift
done
echo $command
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment