From 17a278a4dee25c9e3b5e71628781982120ec6166 Mon Sep 17 00:00:00 2001 From: landley Date: Tue, 13 Dec 2005 04:06:22 +0000 Subject: Minor fix: if(CONFIG) breaks the build when that CONFIG is disabled, it has to be if(ENABLE). (Make allbareconfig is a good testing thing.) git-svn-id: svn://busybox.net/trunk/busybox@12849 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- modutils/modprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 96b442cab..31fc9baf2 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -497,7 +497,7 @@ static struct dep_t *build_dep ( void ) break; } if ( dt ) { - if ( CONFIG_FEATURE_MODPROBE_MULTIPLE_OPTIONS ) { + if ( ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ) { char* new_opt = NULL; while( ( opt = parse_command_string( opt, &new_opt ) ) ) { dt-> m_options = append_option( dt-> m_options, new_opt ); -- cgit v1.2.3-55-g6feb