[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] fix: wget hangs with -r and -O - (bug #40426)
From: |
Giuseppe Scrivano |
Subject: |
Re: [Bug-wget] fix: wget hangs with -r and -O - (bug #40426) |
Date: |
Sat, 23 Nov 2013 14:37:38 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) |
"address@hidden" <address@hidden> writes:
> * configure.ac: added a summary of build options
> diff --git a/src/main.c b/src/main.c
> index 19d7253..d051f7c 100644
> --- a/src/main.c
> +++ b/src/main.c
> @@ -1549,9 +1549,9 @@ for details.\n\n"));
> if (fstat (fileno (output_stream), &st) == 0 && S_ISREG
> (st.st_mode))
> output_stream_regular = true;
> }
> - if (!output_stream_regular && opt.convert_links)
> + if (!output_stream_regular && (opt.convert_links || opt.recursive))
> {
> - fprintf (stderr, _("-k can be used together with -O only if \
> + fprintf (stderr, _("-k or -r can be used together with -O only if \
> outputting to a regular file.\n"));
> print_usage (1);
> exit(1);
>
we are approaching a release and I would like we don't break existing
translations. Would you mind duplicating this block and repeating the
error message, so to not break the translations for the "-k" version:
1) "-k can be used together with -O only if...."
2) "-r can be used together with -O only if...."
we can merge these back after the release, when we will have time to fix
translations again. Sorry for the additional step.
Giuseppe