make modules_install gets wrong path

Hi,
I am trying to run a “make modules_install” but can’t get control over the “KERNELRELEASE”.

In make menuconfig I have set up the local version to “-bone67”, but somehow a ‘+’ is always added to the kernel version.
(also reflected in include/generated/utsrelease.h)

Hence, I end up with a wrong path:

DEPMOD 3.8.13-bone67+

WARNING: could not open /lib/modules/3.8.13-bone67+/modules.order: No such file or directory
WARNING: could not open /lib/modules/3.8.13-bone67+/modules.builtin: No such file or directory

Please advice.

Best regards
Terje Froysa

Sorry, been traveling all week.

use:

LOCALVERSION=-bone67

When you issue the make calls vs changing Makefile,

make ARCH=arm LOCALVERSION=-bone67 CROSS_COMPILE=

Regards,

Thanks Robert!

This saved my day.
I just had to remove the local version setting in the menuconfig and use the LOCALVERSION=-bone67
I guess this is a flaw in the making that will be corrected later.