diff options
author | Andres Freund | 2022-08-25 03:38:14 +0000 |
---|---|---|
committer | Andres Freund | 2022-08-25 03:38:14 +0000 |
commit | 05bf551040ba161ddfbf7da308d61d2b7b425bf3 (patch) | |
tree | 6d0836b7d5076d53bd7284b105669b08c20316f9 | |
parent | 68fc18d14c7e1150823cf4a5728089459723c9da (diff) |
Remove SUBSYS.o rule in common.mk, hasn't been used in a long time
Apparently I missed that this SUBSYS.o rule isn't needed anymore in
a4ebbd27527, likely because there still is a reference to it due to AIX - but
that's self contained in src/backend/Makefile
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/backend/common.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/common.mk b/src/backend/common.mk index 663e9f886c..fa96a82b1a 100644 --- a/src/backend/common.mk +++ b/src/backend/common.mk @@ -17,9 +17,6 @@ ifneq ($(subdir), src/backend) all: $(subsysfilename) endif -SUBSYS.o: $(SUBDIROBJS) $(OBJS) - $(LD) $(LDREL) $(LDOUT) $@ $^ - objfiles.txt: Makefile $(SUBDIROBJS) $(OBJS) # Don't rebuild the list if only the OBJS have changed. $(if $(filter-out $(OBJS),$?),( $(if $(SUBDIROBJS),cat $(SUBDIROBJS); )echo $(addprefix $(subdir)/,$(OBJS)) ) >$@,touch $@) |