diff options
author | Peter Eisentraut | 2008-02-26 08:23:31 +0000 |
---|---|---|
committer | Peter Eisentraut | 2008-02-26 08:23:31 +0000 |
commit | caf8cf0aaba50f89e07bbb9ade9f6554306635cc (patch) | |
tree | cedc51cb2a5d28e396358a2c8ef941f35bd2d3f4 | |
parent | 203c7f9e3192525a951ad3aa2361630295d28bb7 (diff) |
Need more dependencies to get the build order right when objfiles.txt
doesn't exist yet.
-rw-r--r-- | src/backend/common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/common.mk b/src/backend/common.mk index 1c4537e1a8..1ae6f54d53 100644 --- a/src/backend/common.mk +++ b/src/backend/common.mk @@ -26,7 +26,7 @@ endif SUBSYS.o: $(SUBDIROBJS) $(OBJS) $(LD) $(LDREL) $(LDOUT) $@ $^ -objfiles.txt:: $(MAKEFILE_LIST) +objfiles.txt:: $(MAKEFILE_LIST) | $(SUBDIROBJS) $(OBJS) ( $(if $(SUBDIROBJS),cat $(SUBDIROBJS); )echo $(addprefix $(subdir)/,$(OBJS)) ) >$@ objfiles.txt:: $(SUBDIROBJS) $(OBJS) |