|
From: Greg Kroah-H. <kr...@us...> - 2001-03-01 18:34:22
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.11 1.12=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: added INCLUDEDIR variable to allow LSB compliant distros to be able to compile the module correctly (use 'make INCLUDEDIR=3D/usr/src/linux/include= ') The diff of the modified file(s): --- Makefile 2001/02/28 19:01:25 1.11 +++ Makefile 2001/03/01 18:35:24 1.12 @@ -2,6 +2,8 @@ # Makefile for the Bluetooth device driver. # =20 +INCLUDEDIR =3D /usr/include + O_TARGET :=3D bt.o O_OBJS =3D bluetooth.o btdebug.o btmem.o hci.o l2cap.o rfcomm.o sdp.o t= cs.o bt_proc.o hci_vendor.o l2cap_con.o sec_client.o l2cap_sec.o rfcomm_sec= .o M_OBJS =3D $(O_TARGET) @@ -12,8 +14,8 @@ =20 else =20 -MODFLAGS =3D -DMODVERSIONS -include /usr/include/linux/modversions.h -CFLAGS =3D -D__KERNEL__ -DMODULE -I../../../include -Wall -Wstrict-proto= types -O2 -fomit-frame-pointer -fno-strength-reduce $(MODFLAGS) +MODFLAGS =3D -DMODVERSIONS -include $(INCLUDEDIR)/linux/modversions.h +CFLAGS =3D -D__KERNEL__ -DMODULE -I../../../include -I$(INCLUDEDIR) -Wal= l -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strength-reduce $(MODFL= AGS) =20 all: $(O_TARGET) =20 |