I suspect the docs for bare metal install are a bit misleading.
Yeah. Me too. I don't think make clean generate -C opencloud will do what the author expected it to do. (Or it depends on the concrete implementation of make. On my system (gnu make) it changes into the build dir and executes the clean, generate and build targets there. This is not what we need. We need execute the generate and clean targets in the root dir an then the build target in the opencloud dir. I guess it's safer to do that in two separate calls to make.
make clean generate
make -C opencloud build
Originally posted by @rhafer in #562
Yeah. Me too. I don't think
make clean generate -C opencloudwill do what the author expected it to do. (Or it depends on the concrete implementation ofmake. On my system (gnu make) it changes into the build dir and executes theclean,generateandbuildtargets there. This is not what we need. We need execute thegenerateandcleantargets in the root dir an then thebuildtarget in theopenclouddir. I guess it's safer to do that in two separate calls to make.Originally posted by @rhafer in #562