Blender Git master crashes upon starting up

For the first time in over a decade of using Blender, I decided to try compiling the software from its Git repository as I do with other programs. I checked out git://git.blender.org/blender.git then configured everything with cmake and compiled successfully! But although everything compiled well, Blender refuses to run. The binary instantly crashes with the following console output:

https://pastebin.com/raw/NEp6NAWG

The relevant and non-repetitive parts of the log, as forum limits don’t allow me to post it all:

mircea@linux-qz0r:~/Software/Blender/Blender_GIT/build/bin> ./blender
Color management: using fallback mode for management
BLT_lang_init: 'locale' data path for translations not found, continuing
Read prefs: /home/mircea/.config/blender/2.79/config/userpref.blend
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started
bpy: couldnt find 'scripts/modules', blender probably wont start.
Freestyle: couldn't find 'scripts/freestyle/modules', Freestyle won't work properly.
ModuleNotFoundError: No module named 'bpy_types'
ModuleNotFoundError: No module named 'bpy_types'
pyrna_srna_ExternalType: failed to find 'bpy_types' module
ModuleNotFoundError: No module named 'bpy_types'
ModuleNotFoundError: No module named 'bpy_types'
pyrna_srna_ExternalType: failed to find 'bpy_types' module
ModuleNotFoundError: No module named 'bpy_types'
pyrna_srna_ExternalType: failed to find 'bpy_types' module
ModuleNotFoundError: No module named 'bpy'
...
terminate called after throwing an instance of 'std::logic_error'
  what():  basic_string::_M_construct null not valid
Aborted (core dumped)
mircea@linux-qz0r:~/Software/Blender/Blender_GIT/build/bin> 

Any idea on what this might be and why it takes place? My OS is Linux openSUSE Tumbleweed x64, and I compiled latest GIT master of Blender with the default settings proposed by cmake.

Hi, I ran into this as well, I’ve snipped the thing to show relevant lines,
here at least the std::logic_error is being thrown because of the 2nd line:

Freestyle: couldn't find 'scripts/freestyle/modules', Freestyle won't work properly.

Running make install (which installed scripts/ into the build/bin directory) fixes it.