Skip to content

Commit

Permalink
config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread mult…
Browse files Browse the repository at this point in the history
…ilibs to be disabled.

        * config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread
        multilibs to be disabled.

From-SVN: r43294
  • Loading branch information
David Edelsohn authored and David Edelsohn committed Jun 13, 2001
1 parent b93e389 commit fe2ee7c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2001-06-12 David Edelsohn <edelsohn@gnu.org>

* config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread
multilibs to be disabled.

2001-06-11 Daniel Berlin <dan@cgsoftware.com>

* MAINTAINERS (Write After Approval): Add myself.
Expand Down
22 changes: 22 additions & 0 deletions config-ml.in
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,28 @@ mips*-*-*)
esac
;;
powerpc*-*-* | rs6000*-*-*)
if [ x$enable_aix64 = xno ]
then
old_multidirs="${multidirs}"
multidirs=""
for x in ${old_multidirs}; do
case "$x" in
*ppc64* ) : ;;
*) multidirs="${multidirs} ${x}" ;;
esac
done
fi
if [ x$enable_pthread = xno ]
then
old_multidirs="${multidirs}"
multidirs=""
for x in ${old_multidirs}; do
case "$x" in
*pthread* ) : ;;
*) multidirs="${multidirs} ${x}" ;;
esac
done
fi
if [ x$enable_softfloat = xno ]
then
old_multidirs="${multidirs}"
Expand Down

0 comments on commit fe2ee7c

Please sign in to comment.