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 @@ ...@@ -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
......
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