From c51db436049fddda605c8a7907d2f1a71edd31eb Mon Sep 17 00:00:00 2001 From: Kai Germaschewski Date: Sun, 16 Jun 2002 23:48:17 -0500 Subject: kbuild: modversions fix As pointed out by Mikael Pettersson, we didn't generate checksums for all exporting objects, due to a thinko of mine. --- Rules.make | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Rules.make') diff --git a/Rules.make b/Rules.make index e662722d8474..6ef827d3df39 100644 --- a/Rules.make +++ b/Rules.make @@ -131,9 +131,9 @@ else genksyms_smp_prefix := endif -$(MODVERDIR)/$(real-objs-y:.o=.ver): modkern_cflags := $(CFLAGS_KERNEL) -$(MODVERDIR)/$(real-objs-m:.o=.ver): modkern_cflags := $(CFLAGS_MODULE) -$(MODVERDIR)/$(export-objs:.o=.ver): export_flags := -D__GENKSYMS__ +$(addprefix $(MODVERDIR)/,$(real-objs-y:.o=.ver)): modkern_cflags := $(CFLAGS_KERNEL) +$(addprefix $(MODVERDIR)/,$(real-objs-m:.o=.ver)): modkern_cflags := $(CFLAGS_MODULE) +$(addprefix $(MODVERDIR)/,$(export-objs:.o=.ver)): export_flags := -D__GENKSYMS__ c_flags = -Wp,-MD,$(depfile) $(CFLAGS) $(NOSTDINC_FLAGS) \ $(modkern_cflags) $(EXTRA_CFLAGS) $(CFLAGS_$(*F).o) \ -- cgit v1.2.3