2001-02-26 23:48:21

by Craig Milo Rogers

[permalink] [raw]
Subject: 2.2.19pre15: drivers/net/Config.in: 359: bad if condition

After building a patched source tree, and running "make xmenu" on a
RH6.2 system with most relevant RPMs installed, I see:

drivers/net/Config.in: 359: bad if condition

The following line:
if [ "$CONFIG_EXPERIMENTAL" = y -a "$CONFIG_WAN_ROUTER" != "n" ]; then

should be:
if [ "$CONFIG_EXPERIMENTAL" = "y" -a "$CONFIG_WAN_ROUTER" != "n" ]; then


Craig Milo Rogers