Skip to content
Snippets Groups Projects
Commit c667cc24 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Workaround for recursive make breakage

Changing a file two directory levels deep under src/backend/ would not
cause the postgres binary to be rebuilt.  This change fixes it, but no
one knows why.
parent 35eb0958
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ objfiles.txt: Makefile $(SUBDIROBJS) $(OBJS)
expand_subsys = $(foreach file,$(1),$(if $(filter %/objfiles.txt,$(file)),$(patsubst ../../src/backend/%,%,$(addprefix $(top_builddir)/,$(shell cat $(file)))),$(file)))
# Parallel make trickery
$(SUBDIROBJS): | $(SUBDIRS:%=%-recursive) ;
$(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ;
.PHONY: $(SUBDIRS:%=%-recursive)
$(SUBDIRS:%=%-recursive):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment