From 3858bf18d5d3b6a858ca46acb6c8628715520d1c Mon Sep 17 00:00:00 2001 From: Rob 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.) --- modutils/modprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modutils') diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 96b442c..31fc9ba 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.1