]> git.hungrycats.org Git - linux/commitdiff
Fix 'export-objs' usage in Makefiles.
authorLinus Torvalds <torvalds@home.transmeta.com>
Fri, 10 May 2002 02:56:08 +0000 (19:56 -0700)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Fri, 10 May 2002 02:56:08 +0000 (19:56 -0700)
Noted by Keith Owens.

arch/i386/pci/Makefile
drivers/base/Makefile
drivers/pci/Makefile
fs/nls/Makefile

index d0fa50db6acaae2ef08a4899f0ab8e39258fda77..9e5e9cce0a18d5ce10fc20862e28a592566a651a 100644 (file)
@@ -24,6 +24,4 @@ endif         # CONFIG_MULTIQUAD
 obj-y          += irq.o common.o
 endif          # CONFIG_VISWS
 
-export-objs     +=      $(obj-y)
-
 include $(TOPDIR)/Rules.make
index 1995637fa63f799cdd525b7024638c86dd609d3c..3ff40bf56fc651436b58f8e9bdd7b8ae10e02c8b 100644 (file)
@@ -2,6 +2,6 @@ O_TARGET        := base.o
 
 obj-y          := core.o sys.o interface.o fs.o power.o
 
-export-objs    := $(obj-y)
+export-objs    := core.o fs.o power.o sys.o
 
 include $(TOPDIR)/Rules.make
index fbd7f3dd6e5f485713923dac6735829c614f0551..39c30d5790d68609ff9ec47223474fb72abb576c 100644 (file)
@@ -11,6 +11,8 @@
 
 O_TARGET := driver.o
 
+export-objs := access.o hotplug.o pci-driver.o pci.o pool.o probe.o proc.o search.o
+
 obj-y          += access.o probe.o pci.o pool.o quirks.o \
                        compat.o names.o pci-driver.o search.o
 obj-$(CONFIG_PM)  += power.o
@@ -37,8 +39,6 @@ ifndef CONFIG_X86
 obj-y += syscall.o
 endif
 
-export-objs := $(obj-y)
-
 include $(TOPDIR)/Rules.make
 
 names.o: names.c devlist.h classlist.h
index 93b789ab63bcb7ade4f28083c855db2269b27b7e..b1ee35220b8e2d76e03ac55d9e3d079e5bf8ad22 100644 (file)
@@ -2,6 +2,9 @@
 # Makefile for native language support
 #
 
+O_TARGET = nls.o
+export-objs := nls_base.o
+
 obj-y  :=      nls_base.o
 obj-m  :=
 obj-n  :=
@@ -53,8 +56,4 @@ obj-$(CONFIG_NLS_KOI8_U)      += nls_koi8-u.o nls_koi8-ru.o
 obj-$(CONFIG_NLS_ABC)          += nls_abc.o
 obj-$(CONFIG_NLS_UTF8)         += nls_utf8.o
 
-export-objs = $(obj-y)
-
-O_TARGET = nls.o
-
 include $(TOPDIR)/Rules.make