aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-12-13 04:06:22 +0000
committerRob Landley <rob@landley.net>2005-12-13 04:06:22 +0000
commit3858bf18d5d3b6a858ca46acb6c8628715520d1c (patch)
tree9edf512e145fd7bd46f38e4f7cefb4786dacc2bc /modutils
parente9190962719e6a41a1423208125bc2a173dac1ae (diff)
downloadbusybox-3858bf18d5d3b6a858ca46acb6c8628715520d1c.tar.gz
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')
-rw-r--r--modutils/modprobe.c2
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 )
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 );