install(1) fails during make installkernel

I have a compiled kernel and world in /usr/src and /usr/obj.

I'm trying to install a pristine copy of my compiled kernel GENERIC in a non-operational location. That is, I want to use this kernel only for examination and inspection, not for booting. So I don't want to put it in /boot/kernel/. Instead, I want to put it in /my/temp/dir.

The syntax:

Code:
# cd /my/temp/dir
# make -C /usr/src -j8 installkernel DESTDIR=./

errors out with numerous occurrences of:

Code:
install: .//boot/kernel/INS@xtJvqx: No such file or directory

What syntax do I need to use to change DESTDIR when invoking make installkernel?
 
Back
Top