From c639a01c7a3ecf1a127fa43fa780fd6328c1367e Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 20 Apr 2018 08:22:56 +0000 Subject: pseudo-test --- meta/recipes-devtools/pseudo/pseudo-test.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/pseudo/pseudo-test.bb b/meta/recipes-devtools/pseudo/pseudo-test.bb index 90581ef763..3a36dde096 100644 --- a/meta/recipes-devtools/pseudo/pseudo-test.bb +++ b/meta/recipes-devtools/pseudo/pseudo-test.bb @@ -9,13 +9,13 @@ CLEANBROKEN = "1" RULES = "1000" do_compile() { - echo > Makefile; ALL="all: "; for i in `seq -w 1 ${RULES}`; do echo -e "R$i:\n\techo $i > foo.txt" >> Makefile; ALL="$ALL R$i"; done; echo ${ALL} >> Makefile + echo > Makefile; ALL="all: "; for i in `seq -w 1 ${RULES}`; do echo -e "R$i:\n\techo $i > foo.txt\n\tln foo.txt foo.txt.$i\n\tcp foo.txt.$i foo.txt.$i.copy" >> Makefile; ALL="$ALL R$i"; done; echo ${ALL} >> Makefile } do_install() { oe_runmake all cat foo.txt - mv foo.txt ${D} + mv foo.txt.* ${D} } FILES_${PN} = "/" -- cgit 1.2.3-korg