From: Wayne Davison Date: Sat, 15 Mar 2008 21:09:20 +0000 (-0700) Subject: Added missing $(CPPFLAGS) from the building of rounding.h. X-Git-Tag: v3.0.1pre1~48 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=ddff23a7f91bb06409fe2b548e090fdbfd1cd246;p=rsync.git Added missing $(CPPFLAGS) from the building of rounding.h. --- diff --git a/Makefile.in b/Makefile.in index 4d888078..e8e8cb3d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -82,7 +82,7 @@ flist.o: rounding.h rounding.h: rounding.c rsync.h @for r in 0 1 3; do \ - if $(CC) $(CFLAGS) $(LDFLAGS) -o rounding -DEXTRA_ROUNDING=$$r -I. $(srcdir)/rounding.c >rounding.out 2>&1; then \ + if $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o rounding -DEXTRA_ROUNDING=$$r -I. $(srcdir)/rounding.c >rounding.out 2>&1; then \ echo "#define EXTRA_ROUNDING $$r" >rounding.h; \ if test -f "$$HOME/build_farm/build_test.fns"; then \ echo "EXTRA_ROUNDING is $$r" >&2; \