Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 30, 2006
1 parent 3ab609d commit fcd164c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gcc-fat.sh
Expand Up @@ -71,7 +71,7 @@ if test x"$output" != x; then
fi
set -- $args
while test x$1 != x; do
if test -f "ppc/$1"; then
if test -f "ppc/$1" && test "$1" != "$output"; then
ppc_args="$ppc_args ppc/$1"
else
ppc_args="$ppc_args $1"
Expand All @@ -93,7 +93,7 @@ if test x"$output" != x; then
fi
set -- $args
while test x$1 != x; do
if test -f "x86/$1"; then
if test -f "x86/$1" && test "$1" != "$output"; then
x86_args="$x86_args x86/$1"
else
x86_args="$x86_args $1"
Expand Down

0 comments on commit fcd164c

Please sign in to comment.