After changing naming of cargo config in cargo_common.bbclass, adapt
devtool to use the new name.
Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
# Configure the recipe to check that the git dependencies are correctly patched in cargo config
bitbake('-c configure %s' % testrecipe)
- cargo_config_path = os.path.join(cargo_home, 'config')
+ cargo_config_path = os.path.join(cargo_home, 'config.toml')
with open(cargo_config_path, "r") as f:
cargo_config_contents = [line.strip('\n') for line in f.readlines()]