about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <bofh@yhbt.net>2021-10-01 03:09:19 +0000
committerEric Wong <bofh@yhbt.net>2021-10-04 17:39:55 -0900
commitb32113665e9acb6111403afdc59a6a6b1cd8f9d1 (patch)
tree8abca847ea51f24c0ce57b3cb18f52d236ff34e1
parent8296cd0fff593364698e3a8ca3905103eee131ee (diff)
downloadunicorn-b32113665e9acb6111403afdc59a6a6b1cd8f9d1.tar.gz
For the most part, header changes shouldn't trigger extconf.rb
reruns.
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index dd0a761..0e08ef0 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -42,13 +42,13 @@ ext_h := $(wildcard $(ext)/*/*.h $(ext)/*.h)
 ext_src := $(sort $(wildcard $(ext)/*.c) $(ext_h) $(ext)/unicorn_http.c)
 ext_pfx_src := $(addprefix $(ext_pfx)/,$(ext_src))
 ext_dir := $(ext_pfx)/$(ext)
-$(ext)/extconf.rb: $(wildcard $(ext)/*.h)
+$(ext)/extconf.rb:
         @>>$@
 $(ext_dir) $(tmp_bin) man/man1 doc/man1 pkg t/trash:
         @mkdir -p $@
 $(ext_pfx)/$(ext)/%: $(ext)/% | $(ext_dir)
         $(INSTALL) -m 644 $< $@
-$(ext_pfx)/$(ext)/Makefile: $(ext)/extconf.rb $(ext_h) | $(ext_dir)
+$(ext_pfx)/$(ext)/Makefile: $(ext)/extconf.rb | $(ext_dir)
         $(RM) -f $(@D)/*.o
         cd $(@D) && $(RUBY) $(CURDIR)/$(ext)/extconf.rb $(EXTCONF_ARGS)
 ext_sfx := _ext.$(DLEXT)