diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-12-26 18:08:09 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-12-26 18:08:09 +0000 |
commit | 019b4e949d99a38a46082ec390e5162a394237aa (patch) | |
tree | 7b8843decf83bc26b9fa9e257f387536e60a5707 /kernel | |
parent | ba8ec88e0e194f2dc5928b043ee8a5a2d338afe9 (diff) | |
download | libfuse-019b4e949d99a38a46082ec390e5162a394237aa.tar.gz |
cross compilation fixes
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
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 |