bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bootstrap: copy failure


From: Jim Meyering
Subject: Re: bootstrap: copy failure
Date: Sun, 18 Nov 2007 11:55:22 +0100

"Sergey Poznyakoff" <address@hidden> 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

[Prev in Thread] Current Thread [Next in Thread]