From 9e8d127a800d1dbada68ba4cf5ba5cfd72be1675 Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Fri, 23 Sep 2016 16:30:29 +0800 Subject: squid: fix ptest failure Fix error when run ptest on target: cp: cannot stat '/usr/bin/true': No such file or directory make: *** [Makefile:1120: squid-conf-tests] Error 1 The correct path should be /bin/true on target. Signed-off-by: Yi Zhao Signed-off-by: Martin Jansa Signed-off-by: Joe MacDonald --- meta-networking/recipes-daemons/squid/squid_3.5.20.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-networking/recipes-daemons/squid/squid_3.5.20.bb b/meta-networking/recipes-daemons/squid/squid_3.5.20.bb index 1341d92fc9..364d00e122 100644 --- a/meta-networking/recipes-daemons/squid/squid_3.5.20.bb +++ b/meta-networking/recipes-daemons/squid/squid_3.5.20.bb @@ -73,6 +73,9 @@ do_install_ptest() { sed -e 's/^\(runtest-TESTS:\)/\1 squid-conf-tests/' \ -e "s/\(list=' \$(TESTS)\)/\1 squid-conf-tests/" \ -i ${D}${PTEST_PATH}/${TESTDIR}/Makefile + + # Ensure the path for command true is correct + sed -i 's:^TRUE = .*$:TRUE = /bin/true:' ${D}${PTEST_PATH}/${TESTDIR}/Makefile } do_install_append() { -- cgit v1.2.3-54-g00ecf