[PATCH] config: update usage/help info

Replace outdated help message with a reference to README.  Update README
for make *config variants and environment variable info.

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Randy Dunlap
2006-04-18 22:21:53 -07:00
committed by Linus Torvalds
parent 7420884c03
commit 9dfb563b07
2 changed files with 24 additions and 2 deletions

View File

@ -5,6 +5,7 @@
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
@ -531,7 +532,7 @@ int main(int ac, char **av)
break;
case 'h':
case '?':
printf("%s [-o|-s] config\n", av[0]);
fprintf(stderr, "See README for usage info\n");
exit(0);
}
}