This reverts commit
5ffa2eaa541b718122a3422e911ef95f4c9981d7.
It seems that if install_dir is not specified, meson decides install path
based on file type, and non-executable binary files are installed under
/usr/share.
kernel-install is a script. So, we need to set install_dir argument
explicitly.
Fixes #18754.
if want_kernel_install
install_data('kernel-install',
- install_mode : 'rwxr-xr-x')
+ install_mode : 'rwxr-xr-x',
+ install_dir : bindir)
install_data('00-entry-directory.install',
'50-depmod.install',