Mark Chang wrote:
For some reason, Make thinks that my RH9 installed Linux is
'non-linux install'.
I don't know why?
Any ideas?

You don't appear to have taken a glance at the source before asking the group.

grep -i "non-linux" yields:

From Configure:

#
# TARGET
#
PROMPT="\
How do you want to configure STREAMS?\n\
    l = to run in the Linux kernel\n\
    u = to run in user level\n\
    q = to run under QNX (may not work)\n\
Please enter your choice"
RESPONSE="l u q"
DEFAULT="$TARGET"
do_read_choice
TARGET=$RESULT
.
.
.
if   [ "$TARGET" = "l"  ]; then
.
.
.
else
    echo
    echo "Non-Linux install.  Using cc as default C compiler."
    echo
    CC_NAME=cc
    CC_OPTIMIZE=-O
    CC_VERS=`C_compiler_version cc`
fi




_______________________________________________ Linux-streams mailing list [EMAIL PROTECTED] http://gsyc.escet.urjc.es/mailman/listinfo/linux-streams

Reply via email to