From 019b4e949d99a38a46082ec390e5162a394237aa Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 26 Dec 2001 18:08:09 +0000 Subject: cross compilation fixes --- kernel/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'kernel') diff --git a/kernel/Makefile.am b/kernel/Makefile.am index 033c8cb..86d0e9f 100644 --- a/kernel/Makefile.am +++ b/kernel/Makefile.am @@ -3,6 +3,7 @@ EXTRA_DIST = dev.c dir.c file.c inode.c util.c fuse_i.h CC = @CC@ +LD = @LD@ CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe CPPFAGS = -I@KERNINCLUDE@ -I../include -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES INSTALL = @INSTALL@ @@ -31,7 +32,7 @@ clean-local: fuse_objs = dev.o dir.o file.o inode.o util.o fuse.o: $(fuse_objs) - ld -r -o fuse.o $(fuse_objs) + $(LD) -r -o fuse.o $(fuse_objs) fuse_headers = fuse_i.h ../include/linux/fuse.h -- cgit v1.2.3