Messages in this thread Patches in this message |  | | Date | Mon, 08 Oct 2001 09:15:43 +1000 | From | Eyal Lebedinsky <> | Subject | 2.4.11-pre5: Makefile fixes for symbol exports |
| |
Some modules with exported symbols are missing from their respective Makefile and cause a build failure. This simply adds them there.
drivers/ieee1394/Makefile drivers/ide/Makefile
I only test the i386 build.
-- Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.anu.edu.au/eyal/>--- linux/drivers/ieee1394/Makefile.orig Mon Oct 8 08:53:16 2001 +++ linux/drivers/ieee1394/Makefile Mon Oct 8 08:53:39 2001 @@ -4,7 +4,7 @@ O_TARGET := ieee1394drv.o -export-objs := ieee1394_syms.o +export-objs := ieee1394_syms.o ohci1394.o list-multi := ieee1394.o ieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o \--- linux/drivers/ide/Makefile.orig Mon Oct 8 08:52:14 2001 +++ linux/drivers/ide/Makefile Mon Oct 8 08:52:33 2001 @@ -10,7 +10,7 @@ O_TARGET := idedriver.o -export-objs := ide.o ide-features.o +export-objs := ide.o ide-features.o ataraid.o list-multi := ide-mod.o ide-probe-mod.o obj-y := |  |