Commit 0f4dc1b3 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

delete .depend from outside project

parent d62c3573
......@@ -55,6 +55,18 @@ EXTRA_OEMAKE = " \
INITSTRING='${INITSTRING}' \
"
do_clean_append() {
import os.path
VPATH = d.getVar("VPATH")
dfile = os.path.join(VPATH,"src/.depend")
if os.path.exists(dfile):
os.remove(dfile)
}
do_compile_prepend() {
echo "SRCREV is ${SRCREV}"
if [ ! -f Makefile ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment