Fixed to work on Solaris x86

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4023
This commit is contained in:
Sam Lantinga 2001-05-10 20:19:50 +00:00
parent df7866c435
commit 48f77300a1

View file

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