aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/Makefile.am')
-rw-r--r--kernel/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/Makefile.am b/kernel/Makefile.am
index 4c0a17d..89b1018 100644
--- a/kernel/Makefile.am
+++ b/kernel/Makefile.am
@@ -5,7 +5,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
+CPPFLAGS = -I@KERNINCLUDE@ -I../include -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES
INSTALL = @INSTALL@
fusemoduledir = @kmoduledir@/kernel/fs/fuse
@@ -27,7 +27,7 @@ clean-local:
rm -f *.o *.s
.c.o:
- $(CC) $(CFLAGS) $(CPPFAGS) -c $<
+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
fuse_objs = dev.o dir.o file.o inode.o util.o