"Sergey Poznyakoff" <[EMAIL PROTECTED]> wrote:

> Bootstrap reports
>
> cp: cannot create regular file `lib/uniwidth/cjk.h-t': No such file or
> directory
>
> The following patch fixes it:
>
> diff --git a/build-aux/bootstrap b/build-aux/bootstrap
> index 0e2bd34..278c10b 100755
> --- a/build-aux/bootstrap
> +++ b/build-aux/bootstrap
> @@ -366,6 +367,11 @@ cp_mark_as_generated()
>        *)                  c1=     ; c2=     ;;
>      esac
>
> +    dst_dir=`dirname "$cp_dst"`
> +    if ! test -d "$dst_dir"; then
> +      mkdir -p "$dst_dir"
> +    fi

Thanks.
That was fixed with the merge from coreutils.


Reply via email to