oops, we only want to affect local CFLAGS
authorMike Frysinger <vapier@gentoo.org>
Sat, 11 Jun 2005 00:45:50 +0000 (00:45 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sat, 11 Jun 2005 00:45:50 +0000 (00:45 -0000)
e2fsprogs/Makefile.in

index a369fabd7e2946d4784d91268492141e5acd30e0..5c69fbeefe4bb7c8df430402cda7893df062837a 100644 (file)
@@ -23,7 +23,7 @@ E2FSPROGS_DIR:=$(top_builddir)/e2fsprogs/
 endif
 srcdir=$(top_srcdir)/e2fsprogs
 
-CFLAGS += -I$(E2FSPROGS_DIR) -include $(E2FSPROGS_DIR)e2fsbb.h
+E2FSPROGS_CFLAGS := -I$(E2FSPROGS_DIR) -include $(E2FSPROGS_DIR)e2fsbb.h
 
 E2P_SRC     := fgetsetflags.c fgetsetversion.c pf.c iod.c
 E2P_SRCS    := $(patsubst %,e2p/%, $(E2P_SRC))
@@ -40,4 +40,4 @@ $(E2FSPROGS_DIR)$(E2FSPROGS_AR): $(patsubst %,$(E2FSPROGS_DIR)%, $(E2FSPROGS-y))
        $(AR) -ro $@ $(patsubst %,$(E2FSPROGS_DIR)%, $(E2FSPROGS-y))
 
 $(E2FSPROGS_DIR)%.o: $(srcdir)/%.c
-       $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
+       $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(E2FSPROGS_CFLAGS) -c -o $@ $<