diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
commit | e324184c0509cc0db168ce29546e1b52800a79c6 (patch) | |
tree | 9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /miscutils | |
parent | 5f1b149d541ebba7cab841cb647f113248f9fb8f (diff) | |
download | busybox-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz |
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/makedevs.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 0ad12d798..6a3e80883 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c @@ -9,7 +9,7 @@ #include "libbb.h" -#ifdef CONFIG_FEATURE_MAKEDEVS_LEAF +#if ENABLE_FEATURE_MAKEDEVS_LEAF int makedevs_main(int argc, char **argv); int makedevs_main(int argc, char **argv) { @@ -65,7 +65,7 @@ int makedevs_main(int argc, char **argv) return 0; } -#elif defined CONFIG_FEATURE_MAKEDEVS_TABLE +#elif ENABLE_FEATURE_MAKEDEVS_TABLE /* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ @@ -162,8 +162,7 @@ int makedevs_main(int argc, char **argv) ret = EXIT_FAILURE; goto loop; } - } else - { + } else { dev_t rdev; if (type == 'p') { |