aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-12-26 18:08:09 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-12-26 18:08:09 +0000
commit019b4e949d99a38a46082ec390e5162a394237aa (patch)
tree7b8843decf83bc26b9fa9e257f387536e60a5707 /kernel
parentba8ec88e0e194f2dc5928b043ee8a5a2d338afe9 (diff)
downloadlibfuse-019b4e949d99a38a46082ec390e5162a394237aa.tar.gz
cross compilation fixes
Diffstat (limited to 'kernel')
-rw-r--r--kernel/Makefile.am3
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