Minor fix: if(CONFIG) breaks the build when that CONFIG is disabled, it has
authorRob Landley <rob@landley.net>
Tue, 13 Dec 2005 04:06:22 +0000 (04:06 -0000)
committerRob Landley <rob@landley.net>
Tue, 13 Dec 2005 04:06:22 +0000 (04:06 -0000)
to be if(ENABLE).  (Make allbareconfig is a good testing thing.)

modutils/modprobe.c

index 96b442cabd2677c5d25a6d964321191c7064c23b..31fc9baf269a620df50e828be9bc8fe618373768 100644 (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 );