diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2012-05-19 10:15:45 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2012-05-19 10:15:45 +0000 |
commit | af9d18fbbc4b7fb1aa6f13df69667ad6a0dc18b9 (patch) | |
tree | b88be0ba7cb13c885704018ed0e3d49a77698d0f | |
parent | Merge branch 'bug/parallel-make' (diff) | |
download | w3m-af9d18fbbc4b7fb1aa6f13df69667ad6a0dc18b9.tar.gz w3m-af9d18fbbc4b7fb1aa6f13df69667ad6a0dc18b9.zip |
Use $(CPPFLAGS) with $(CPP)
Patch from <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665491>
provided by Simon Ruderich.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 52a0aae..4a6f334 100644 --- a/Makefile.in +++ b/Makefile.in @@ -150,7 +150,7 @@ parsetagx.o: html.c funcname.tab: $(DEFUNS) (echo '#define DEFUN(x,y,z) x y';\ - sed -ne '/^DEFUN/{p;n;/^[ ]/p;}' $(DEFUNS)) | $(CPP) - | \ + sed -ne '/^DEFUN/{p;n;/^[ ]/p;}' $(DEFUNS)) | $(CPP) $(CPPFLAGS) - | \ awk '$$1 ~ /^[_A-Za-z]/ { \ for (i=2;i<=NF;i++) { print $$i, $$1} \ }' > $@.tmp |