Disable the parallel build on Fedora 26

There is a problem with cmake 3.11.0 and the parallel build fails with
See https://github.com/ptrkrysik/gr-gsm/pull/378#issuecomment-379583050

make[2]: *** No rule to make target 'swig/grgsm_swig.py', needed by 'swig/grgsm_swig.pyc'.  Stop.
make[1]: *** [CMakeFiles/Makefile2:601: swig/CMakeFiles/pygen_swig_43235.dir/all] Error 2
This commit is contained in:
Vasil Velichkov 2018-04-09 13:01:39 +03:00 committed by Piotr Krysik
parent 084b14ea17
commit 8b9b88d788
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ RUN cmake .. && \
# The parallel build sometimes fails when the .grc_gnuradio
# and .gnuradio directories do not exist
mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/ && \
make -j $(nproc) && \
make && \
make install && \
ldconfig && \
make test