Messages in this thread Patch in this message |  | | From | Mikael Pettersson <> | Date | Tue, 10 Sep 2002 16:58:38 +0200 | Subject | [PATCH] undo 2.5.34 ftape damage |
| |
In the 2.5.33->2.5.34 step someone removed "export-objs" from drivers/char/ftape/lowlevel/Makefile, which makes it impossible to build ftape as a module since is _does_ have a number of EXPORT_SYMBOL's.
The patch below reverts that change. Linus, please apply.
/Mikael
--- linux-2.5.34/drivers/char/ftape/lowlevel/Makefile.~1~ Mon Sep 9 21:15:28 2002 +++ linux-2.5.34/drivers/char/ftape/lowlevel/Makefile Tue Sep 10 16:43:25 2002 @@ -23,6 +23,8 @@ # driver for Linux. # +export-objs := ftape_syms.o + obj-$(CONFIG_FTAPE) += ftape.o ftape-objs := ftape-init.o fdc-io.o fdc-isr.o \ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |