diff options
author | Rob Landley <rob@landley.net> | 2005-12-13 04:06:22 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-13 04:06:22 +0000 |
commit | 3858bf18d5d3b6a858ca46acb6c8628715520d1c (patch) | |
tree | 9edf512e145fd7bd46f38e4f7cefb4786dacc2bc /modutils/modprobe.c | |
parent | e9190962719e6a41a1423208125bc2a173dac1ae (diff) | |
download | busybox-w32-3858bf18d5d3b6a858ca46acb6c8628715520d1c.tar.gz busybox-w32-3858bf18d5d3b6a858ca46acb6c8628715520d1c.tar.bz2 busybox-w32-3858bf18d5d3b6a858ca46acb6c8628715520d1c.zip |
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.)
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) | |||
497 | break; | 497 | break; |
498 | } | 498 | } |
499 | if ( dt ) { | 499 | if ( dt ) { |
500 | if ( CONFIG_FEATURE_MODPROBE_MULTIPLE_OPTIONS ) { | 500 | if ( ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ) { |
501 | char* new_opt = NULL; | 501 | char* new_opt = NULL; |
502 | while( ( opt = parse_command_string( opt, &new_opt ) ) ) { | 502 | while( ( opt = parse_command_string( opt, &new_opt ) ) ) { |
503 | dt-> m_options = append_option( dt-> m_options, new_opt ); | 503 | dt-> m_options = append_option( dt-> m_options, new_opt ); |