[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug-gnu-libiconv] Including libiconv in another package
From: |
Bruno Haible |
Subject: |
Re: [bug-gnu-libiconv] Including libiconv in another package |
Date: |
Sun, 10 Mar 2024 14:32:25 +0100 |
Reuben Thomas wrote:
> ... config.h.in include/libcharset.h.build.in include/localcharset.h.build.in
> ;
> do \
> if test -f $file; then dir='.'; else dir='.'; fi; \
> destdir=`echo '../recode-3.7.14/libiconv/libcharset'/$file | sed -e
> 's|//*[^/]*$||'`; \
> test -d "$destdir" || mkdir "$destdir"; \
> cp -p "$dir/$file" '../recode-3.7.14/libiconv/libcharset'/$file || exit
> 1; \
> done
> mkdir: cannot create directory ‘../recode-3.7.14/libiconv/libcharset’: No
> such file or directory
> cp: cannot create regular file
> '../recode-3.7.14/libiconv/libcharset/README': No such file or directory
>
> These last two commands are being executed from inside
> ./libiconv/libcharset, so an extra .. would be required on distdir.
libiconv/libcharset/Makefile.in target 'distdir' references $(srcdir).
Is
srcdir = .
the right setting? Or should it be
srcdir = ..
?
Bruno
- Re: [bug-gnu-libiconv] Including libiconv in another package, (continued)
- Re: [bug-gnu-libiconv] Including libiconv in another package, Reuben Thomas, 2024/03/10
- Re: [bug-gnu-libiconv] Including libiconv in another package, Bruno Haible, 2024/03/10
- Re: [bug-gnu-libiconv] Including libiconv in another package, Reuben Thomas, 2024/03/10
- Re: [bug-gnu-libiconv] Including libiconv in another package, Bruno Haible, 2024/03/10
- Re: [bug-gnu-libiconv] Including libiconv in another package, Reuben Thomas, 2024/03/11
- [bug-gnu-libiconv] unsubscribe, Mike Fulton, 2024/03/11
- Re: [bug-gnu-libiconv] unsubscribe, Bruno Haible, 2024/03/11
- Re: [bug-gnu-libiconv] Including libiconv in another package, Bruno Haible, 2024/03/11
- Re: [bug-gnu-libiconv] Including libiconv in another package, Reuben Thomas, 2024/03/12
- Re: [bug-gnu-libiconv] Including libiconv in another package, Reuben Thomas, 2024/03/12
Re: [bug-gnu-libiconv] Including libiconv in another package,
Bruno Haible <=