projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef75508
)
Sort SUBDIRS variable in src/bin/Makefile
author
Peter Eisentraut
<peter_e@gmx.net>
Mon, 15 Dec 2014 01:41:58 +0000
(20:41 -0500)
committer
Peter Eisentraut
<peter_e@gmx.net>
Sun, 8 Mar 2015 18:09:34 +0000
(14:09 -0400)
The previous order appears to have been historically grown randomness.
src/bin/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/Makefile
b/src/bin/Makefile
index 2b628f317626356ac985b01dd40f79ed096cc890..90ca1a8cce498f1185dea240d6f51743fef0dc6c 100644
(file)
--- 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