In message 
<cahu+3oywmvbkghytno7hcjpud4vv4inahzgvv-qgz1ngu56...@mail.gmail.com>, Red 
Cricket writes:
> That's it! THANK YOU!
> 
> my /usr/bin/gcc was this ...
> 
> #!/bin/sh
> 
> if [ -n "$GCC10G" ]; then
>         # Use the standard gcc
>         exec /usr/bin/gcc323 $@
> elif id | grep -q gcc296; then
>         #Use the compat gcc
>         exec /usr/bin/gcc296 $@
> elif [ -n "$GCC296" ]; then
>         # Use the compat gcc
>         exec /usr/bin/gcc296 $@
> else
>         # Use the standard gcc
>         exec /usr/bin/gcc323 $@
> fi
> 
> .. when I changed it to this ...
> 
> #!/bin/sh
> 
> if [ -n "$GCC10G" ]; then
>         # Use the standard gcc
>         exec /usr/bin/gcc323 $@
> elif id | grep -q gcc296; then
>         #Use the compat gcc
>         exec /usr/bin/gcc296 $@
> elif [ -n "$GCC296" ]; then
>         # Use the compat gcc
>         exec /usr/bin/gcc296 $@
> else
>         # Use the standard gcc
>         #exec /usr/bin/gcc323 $@
>         exec /usr/bin/gcc323 "$@"
> fi
> 
> ... the make work fine now.

But is still broken for all the other calls.

-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742                 INTERNET: ma...@isc.org
_______________________________________________
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Reply via email to