Open original-birdman opened 1 year ago
The Makefile (in the root location) has errors in the $(TOPDIR)/env.source rule.
$(TOPDIR)/env.source
It uses [[...]]] as a test (twice), but this code is run by sh, not bash, and [[ is not valid Bourne shell syntax.
They should both be [...] instead.
The Makefile (in the root location) has errors in the
$(TOPDIR)/env.source
rule.It uses [[...]]] as a test (twice), but this code is run by sh, not bash, and [[ is not valid Bourne shell syntax.
They should both be [...] instead.