diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:45:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:45:50 +0000 |
commit | 7ffce0c119a9c87e02908f19dae777a1760d9a03 (patch) | |
tree | 81782d5d1480629fb508c8dd267663bee93d416a | |
parent | d5624dcc0da44b78f77eba8e5f504c8447ce70bf (diff) | |
download | busybox-w32-7ffce0c119a9c87e02908f19dae777a1760d9a03.tar.gz busybox-w32-7ffce0c119a9c87e02908f19dae777a1760d9a03.tar.bz2 busybox-w32-7ffce0c119a9c87e02908f19dae777a1760d9a03.zip |
oops, we only want to affect local CFLAGS
-rw-r--r-- | e2fsprogs/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/Makefile.in b/e2fsprogs/Makefile.in index a369fabd7..5c69fbeef 100644 --- a/e2fsprogs/Makefile.in +++ b/e2fsprogs/Makefile.in | |||
@@ -23,7 +23,7 @@ E2FSPROGS_DIR:=$(top_builddir)/e2fsprogs/ | |||
23 | endif | 23 | endif |
24 | srcdir=$(top_srcdir)/e2fsprogs | 24 | srcdir=$(top_srcdir)/e2fsprogs |
25 | 25 | ||
26 | CFLAGS += -I$(E2FSPROGS_DIR) -include $(E2FSPROGS_DIR)e2fsbb.h | 26 | E2FSPROGS_CFLAGS := -I$(E2FSPROGS_DIR) -include $(E2FSPROGS_DIR)e2fsbb.h |
27 | 27 | ||
28 | E2P_SRC := fgetsetflags.c fgetsetversion.c pf.c iod.c | 28 | E2P_SRC := fgetsetflags.c fgetsetversion.c pf.c iod.c |
29 | E2P_SRCS := $(patsubst %,e2p/%, $(E2P_SRC)) | 29 | E2P_SRCS := $(patsubst %,e2p/%, $(E2P_SRC)) |
@@ -40,4 +40,4 @@ $(E2FSPROGS_DIR)$(E2FSPROGS_AR): $(patsubst %,$(E2FSPROGS_DIR)%, $(E2FSPROGS-y)) | |||
40 | $(AR) -ro $@ $(patsubst %,$(E2FSPROGS_DIR)%, $(E2FSPROGS-y)) | 40 | $(AR) -ro $@ $(patsubst %,$(E2FSPROGS_DIR)%, $(E2FSPROGS-y)) |
41 | 41 | ||
42 | $(E2FSPROGS_DIR)%.o: $(srcdir)/%.c | 42 | $(E2FSPROGS_DIR)%.o: $(srcdir)/%.c |
43 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< | 43 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(E2FSPROGS_CFLAGS) -c -o $@ $< |