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.)
This commit is contained in:
Rob Landley 2005-12-13 04:06:22 +00:00
parent e919096271
commit 3858bf18d5

View File

@ -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 );