Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 37e2673

Browse 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

File tree

4 files changed

+1
-53
lines changed

4 files changed

+1
-53
lines changed

doc/src/sgml/ref/allfiles.sgml

-1
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

-44
This file was deleted.

doc/src/sgml/reference.sgml

-1
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

+1-7
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)