Commit 08b01d4d authored by Tom Lane's avatar Tom Lane

Remove now-useless ALWAYS_SUBDIRS entry in src/test/Makefile.

Commit 257836a7 added the "locale" subdirectory to SUBDIRS,
but neglected to remove it from ALWAYS_SUBDIRS.  This oversight
had no functional effect because the filter-out function would
remove it anyway.  Still, it's confusing to readers to list a
subdirectory in both places, especially because it makes the
associated comment into a partial lie.
parent 20659fd8
...@@ -38,7 +38,7 @@ endif ...@@ -38,7 +38,7 @@ endif
# clean" etc to recurse into them. (We must filter out those that we # clean" etc to recurse into them. (We must filter out those that we
# have conditionally included into SUBDIRS above, else there will be # have conditionally included into SUBDIRS above, else there will be
# make confusion.) # make confusion.)
ALWAYS_SUBDIRS = $(filter-out $(SUBDIRS),examples kerberos ldap locale ssl) ALWAYS_SUBDIRS = $(filter-out $(SUBDIRS),examples kerberos ldap ssl)
# We want to recurse to all subdirs for all standard targets, except that # We want to recurse to all subdirs for all standard targets, except that
# installcheck and install should not recurse into the subdirectory "modules". # installcheck and install should not recurse into the subdirectory "modules".
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment