From c031fd554765b686d49cf6a0ccefbc48e8ab5db5 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Mon, 13 Nov 2000 10:21:27 +0000 Subject: [PATCH] = vs. == bugfix --- scripts/dep.rtlinux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dep.rtlinux b/scripts/dep.rtlinux index dad2e71e..98b6c20b 100755 --- a/scripts/dep.rtlinux +++ b/scripts/dep.rtlinux @@ -3,7 +3,7 @@ if [ -f "$LINUXDIR/include/asm/rt_irq.h" ]; then CONFIG_RTL_V1="y" fi -if [ "$CONFIG_RTLINUX" == "y" ]; then +if [ "$CONFIG_RTLINUX" = "y" ]; then CONFIG_RTL=y fi if [ "$CONFIG_RTL" != "" -o "$CONFIG_RTL_V1" = "y" ]; then -- 2.26.2