> - vcopy src/utlist.h usr/include
> - vcopy src/utstring.h usr/include
> - vdoc doc/userguide.txt
> - vdoc doc/utarray.txt
> - vdoc doc/utlist.txt
> - vdoc doc/utstring.txt
> - vlicense LICENSE
> +
> + for files in src; do
> + vcopy src/$file usr/include
> + done
> +
> + cd doc/
> + for docs in *.txt; do
> + vdoc $docs
> + done
So make these loops, if they are actually supposed to be every file, just two lines:
```
vcopy src/* usr/include
vdoc doc/*.txt
```
and this will be ready for merging.
---
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
https://github.com/voidlinux/void-packages/pull/4426/files/9a26ac8447f90c97862d08a7afdba52df1d5c2e3#r69597373
When I use vdoc doc/*.txt, ocorreus this error:
```
=> ERROR: uthash-2.0.0_1: vinstall: cannot find 'doc/*.txt'...
=> ERROR: uthash-2.0.0_1: failed to run do_install() at line 140.
```
This is motive is in commit.
```for files in src; do
vcopy src/$file usr/include
done```
---
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
https://github.com/voidlinux/void-packages/pull/4426#issuecomment-230677222
Merged #4426.
---
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
https://github.com/voidlinux/void-packages/pull/4426#event-714382573