Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 37e2673

Browse filesBrowse files
committed
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 8126644 commit 37e2673
Copy full SHA for 37e2673

File tree

4 files changed

+1
-53
lines changed
Filter options

4 files changed

+1
-53
lines changed

‎doc/src/sgml/ref/allfiles.sgml

Copy file name to clipboardExpand all lines: doc/src/sgml/ref/allfiles.sgml
-1Lines 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

Copy file name to clipboardExpand all lines: doc/src/sgml/ref/postmaster.sgml
-44Lines changed: 0 additions & 44 deletions
This file was deleted.

‎doc/src/sgml/reference.sgml

Copy file name to clipboardExpand all lines: doc/src/sgml/reference.sgml
-1Lines 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

Copy file name to clipboardExpand all lines: src/backend/Makefile
+1-7Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.