when running vagrant up, during the provisioning I get
==> default: STDERR: CMake Error at CMakeLists.txt:166 (message):
==> default: Gruel required to build gr-osmosdr
==> default:
==> default:
==> default: make: *** No rule to make target `clean'. Stop.
==> default: make: *** No targets specified and no makefile found. Stop.
The bit of code that fails on the recipe is
==> default: 137: bash 'Compile gr-osmosdr' do
==> default: 138: user 'vagrant'
==> default: 139: group 'vagrant'
==> default: 140: cwd node[:workingdir] + '/gr-osmosdr'
==> default: 141: code <<-EOH
==> default: 142: mkdir -p build
==> default: 143: cd build
==> default: 144: cmake ../
==> default: 145: make clean
==> default: 146: make
==> default: 147: EOH
==> default: 148: end
and checking the output, it doesn't seem to find anything at all
cmake ../ | grep found
-- package 'gruel' not found
-- package 'gnuradio-core' not found
-- package 'gnuradio-iqbalance' not found
-- package 'uhd' not found
-- package 'gnuradio-uhd' not found
-- gnuradio-uhd not found.
-- package 'gnuradio-fcd' not found
-- gnuradio-fcd not found.
-- package 'gnuradio-fcdproplus' not found
-- gnuradio-fcdproplus not found.
-- package 'libosmosdr' not found
-- libosmosdr not found.
-- package 'libmirisdr' not found
-- libmirisdr not found.
-- package 'libairspy' not found
-- package 'libbladeRF' not found
-- libbladeRF not found.
CMake Error at CMakeLists.txt:166 (message):
Gruel required to build gr-osmosdr
when running
vagrant up
, during the provisioning I getThe bit of code that fails on the recipe is
and checking the output, it doesn't seem to find anything at all
Any clue?