diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-20 23:05:06 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-20 23:05:06 +0000 |
commit | 49b87f62f90f2918eab7a093823ce73ae3e8a219 (patch) | |
tree | aab524d6a9ad034eb5f84dfdb5e41b4e51c1a6cd /scripts/config | |
parent | 316cce65e774877da1c975bace65d235958848ec (diff) | |
download | busybox-w32-49b87f62f90f2918eab7a093823ce73ae3e8a219.tar.gz busybox-w32-49b87f62f90f2918eab7a093823ce73ae3e8a219.tar.bz2 busybox-w32-49b87f62f90f2918eab7a093823ce73ae3e8a219.zip |
Rename UNUSE() to SKIP().
git-svn-id: svn://busybox.net/trunk/busybox@14151 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'scripts/config')
-rw-r--r-- | scripts/config/confdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config/confdata.c b/scripts/config/confdata.c index a866deb45..c87124584 100644 --- a/scripts/config/confdata.c +++ b/scripts/config/confdata.c | |||
@@ -454,7 +454,7 @@ int conf_write(const char *name) | |||
454 | fprintf(out_h, "#define ENABLE_%s %d\n", opt_name, use_flg); | 454 | fprintf(out_h, "#define ENABLE_%s %d\n", opt_name, use_flg); |
455 | fprintf(out_h, "#define USE_%s(...)%s\n", opt_name, | 455 | fprintf(out_h, "#define USE_%s(...)%s\n", opt_name, |
456 | (use_flg ? " __VA_ARGS__" : "")); | 456 | (use_flg ? " __VA_ARGS__" : "")); |
457 | fprintf(out_h, "#define UNUSE_%s(...)%s\n\n", opt_name, | 457 | fprintf(out_h, "#define SKIP_%s(...)%s\n\n", opt_name, |
458 | (use_flg ? "" : " __VA_ARGS__")); | 458 | (use_flg ? "" : " __VA_ARGS__")); |
459 | } | 459 | } |
460 | /* end busybox`s code */ | 460 | /* end busybox`s code */ |