On Tuesday 12 February 2008 12:20:21 JinKyoungKwon wrote:
> SRC_URI = " ${WORKDIR}/test1/test1.c \
>
> ${WORKDIR}/test2/test2.c \
>
> ${WORKDIR}/test3/test3.c \
>
> ${WORKDIR}/README.txt "

These are not URI's. URIs start with a scheme specification like http, file, 
etc. Put the files into packages/test/files/ and reference them with:

SRC_URI = "\
 file://test1.c \
 file://test2.c \
 file://test3.c \
 file://README.txt \
"

Reply via email to