From 1515e39e71d71d3d4bd222fde4e10e74e6b18661 Mon Sep 17 00:00:00 2001 From: Ying Xie Date: Tue, 1 Oct 2019 21:12:19 -0700 Subject: [PATCH] [makefile] build Jessie slave unless NOJESSIE is specified (#3546) * [makefile] build Jessie slave unless NOJESSIE is specified * fix if condition --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c949171a89..13a3f247fc 100644 --- a/Makefile +++ b/Makefile @@ -17,4 +17,7 @@ endif clean reset init configure showtag sonic-slave-build sonic-slave-bash : @echo "+++ Making $@ +++" +ifeq ($(NOJESSIE), 0) + make -f Makefile.work $@ +endif BLDENV=stretch make -f Makefile.work $@