Hi, At Fri, 9 Sep 2005 12:57:26 +0900, Philip J. Mikal wrote in [ruby-talk:155413]: > Here is the script: > > #!/bin/sh > > if 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 They must be "$@" instead of mere $@. > I've run into this problem on a few boxes and they are > all Red Hat 9. I'm suprised this problem hasn't shown > up before. What package contains the script? What does following command show? rpm -qif /usr/bin/gcc -- Nobu Nakada