Skip to content
Snippets Groups Projects
Commit 5a2a48f0 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Sort SUBDIRS variable in src/bin/Makefile

The previous order appears to have been historically grown randomness.
parent ef75508e
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,16 @@ subdir = src/bin
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
SUBDIRS = initdb pg_ctl pg_dump \
psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
SUBDIRS = \
initdb \
pg_basebackup \
pg_config \
pg_controldata \
pg_ctl \
pg_dump \
pg_resetxlog \
psql \
scripts
ifeq ($(PORTNAME), win32)
SUBDIRS += pgevent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment