From: Peter Eisentraut Date: Mon, 15 Dec 2014 01:41:58 +0000 (-0500) Subject: Sort SUBDIRS variable in src/bin/Makefile X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=5a2a48f0367e24f8f12cfe0a90a886dae0db1ce2;p=users%2Fheikki%2Fpostgres.git Sort SUBDIRS variable in src/bin/Makefile The previous order appears to have been historically grown randomness. --- diff --git a/src/bin/Makefile b/src/bin/Makefile index 2b628f3176..90ca1a8cce 100644 --- a/src/bin/Makefile +++ b/src/bin/Makefile @@ -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