patch-2.3.47 linux/scripts/Configure
Next file: linux/scripts/Menuconfig
Previous file: linux/net/wanrouter/wanmain.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
Sun Feb 20 20:13:10 2000
- Orig file:
v2.3.46/linux/scripts/Configure
- Orig date:
Mon Nov 1 13:56:27 1999
diff -u --recursive --new-file v2.3.46/linux/scripts/Configure linux/scripts/Configure
@@ -311,6 +311,26 @@
bool "$ques" "$var"
}
+function dep_mbool () {
+ ques=$1
+ var=$2
+ shift 2
+ while [ $# -gt 0 ]; do
+ case "$1" in
+ n)
+ define_bool "$var" "n"
+ return
+ ;;
+ m)
+ eval "$var=y"
+ ;;
+ esac
+ shift
+ done
+
+ bool "$ques" "$var"
+}
+
#
# define_int sets the value of a integer argument
#
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)