diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-08-23 12:01:24 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-08-31 07:33:41 -0400 |
commit | c94d3fb01fb6db1899cdf53ea4eb9d38e08a08fe (patch) | |
tree | 28694d7b171993bacdd8f986312d6e361fceb644 /scripts | |
parent | 9ba9568259f71bc848ac460bc616ce9640634693 (diff) |
kbuild: use getopt_long(), not its _only() variant
NetBSD lacks getopt_long_only() whereas getopt_long() works just fine.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 4f0ed5b3a75e..4b3ad9b862b1 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c | |||
@@ -466,7 +466,7 @@ int main(int ac, char **av) | |||
466 | bindtextdomain(PACKAGE, LOCALEDIR); | 466 | bindtextdomain(PACKAGE, LOCALEDIR); |
467 | textdomain(PACKAGE); | 467 | textdomain(PACKAGE); |
468 | 468 | ||
469 | while ((opt = getopt_long_only(ac, av, "", long_opts, NULL)) != -1) { | 469 | while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) { |
470 | input_mode = (enum input_mode)opt; | 470 | input_mode = (enum input_mode)opt; |
471 | switch (opt) { | 471 | switch (opt) { |
472 | case silentoldconfig: | 472 | case silentoldconfig: |