aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2006-01-16 12:46:07 +0100
committerSam Ravnborg <sam@mars.ravnborg.org>2006-01-16 12:46:07 +0100
commitdf9df036d356078679a60135fba65f79cd6153d0 (patch)
treeeecd46f73c19dd0a5de76ba8e6ba294debd31088 /Makefile
parentkbuild: create .kernelrelease at *config step (diff)
downloadwireguard-linux-df9df036d356078679a60135fba65f79cd6153d0.tar.xz
wireguard-linux-df9df036d356078679a60135fba65f79cd6153d0.zip
kbuild: fix 'make all install_modules install'
The command 'make all modules_install install' would fail in a virgin tree - pointing at a non-existing directory under /lib/modules/xxx KERNELRELEASE is part of MODLIB and we need to create .kernelrelease before we can properly evaluate KERNELRELEASE, Changing MODLIB to the recursively expanded flavor let it pick up the correct KERNELRELEASE value. Reported by: "Hemmann, Volker Armin" <volker.armin.hemmann@tu-clausthal.de> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 22e322f1757c..37a4b67653cc 100644
--- a/Makefile
+++ b/Makefile
@@ -545,7 +545,7 @@ export INSTALL_PATH ?= /boot
# makefile but the arguement can be passed to make if needed.
#
-MODLIB := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
+MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
export MODLIB