Skip to content

Commit 9155754

Browse files
peterepull[bot]
authored andcommitted
Don't install postmaster symlink anymore
This has long been deprecated. Some of the build systems didn't even install it. Also remove man page. Reviewed-by: Karl O. Pinc <kop@karlpinc.com> Discussion: https://www.postgresql.org/message-id/flat/ece84b69-8f94-8b88-925f-64207cb3a2f0@enterprisedb.com
1 parent fa33adc commit 9155754

File tree

4 files changed

+1
-53
lines changed

4 files changed

+1
-53
lines changed

doc/src/sgml/ref/allfiles.sgml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ Complete list of usable sgml source files in this directory.
219219
<!ENTITY pgupgrade SYSTEM "pgupgrade.sgml">
220220
<!ENTITY pgwaldump SYSTEM "pg_waldump.sgml">
221221
<!ENTITY postgres SYSTEM "postgres-ref.sgml">
222-
<!ENTITY postmaster SYSTEM "postmaster.sgml">
223222
<!ENTITY psqlRef SYSTEM "psql-ref.sgml">
224223
<!ENTITY reindexdb SYSTEM "reindexdb.sgml">
225224
<!ENTITY vacuumdb SYSTEM "vacuumdb.sgml">

doc/src/sgml/ref/postmaster.sgml

Lines changed: 0 additions & 44 deletions
This file was deleted.

doc/src/sgml/reference.sgml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@
289289
&pgupgrade;
290290
&pgwaldump;
291291
&postgres;
292-
&postmaster;
293292

294293
</reference>
295294

src/backend/Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -216,12 +216,6 @@ endif
216216

217217
install-bin: postgres $(POSTGRES_IMP) installdirs
218218
$(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postgres$(X)'
219-
ifneq ($(PORTNAME), win32)
220-
@rm -f '$(DESTDIR)$(bindir)/postmaster$(X)'
221-
ln -s postgres$(X) '$(DESTDIR)$(bindir)/postmaster$(X)'
222-
else
223-
$(INSTALL_PROGRAM) postgres$(X) '$(DESTDIR)$(bindir)/postmaster$(X)'
224-
endif
225219
ifeq ($(MAKE_EXPORTS), true)
226220
$(INSTALL_DATA) $(POSTGRES_IMP) '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
227221
$(INSTALL_PROGRAM) $(MKLDEXPORT) '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'
@@ -250,7 +244,7 @@ endif
250244
##########################################################################
251245

252246
uninstall:
253-
rm -f '$(DESTDIR)$(bindir)/postgres$(X)' '$(DESTDIR)$(bindir)/postmaster'
247+
rm -f '$(DESTDIR)$(bindir)/postgres$(X)'
254248
ifeq ($(MAKE_EXPORTS), true)
255249
rm -f '$(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)'
256250
rm -f '$(DESTDIR)$(pgxsdir)/$(MKLDEXPORT_DIR)/mkldexport.sh'

0 commit comments

Comments
 (0)