diff options
author | Tom Lane | 2020-12-19 22:58:30 +0000 |
---|---|---|
committer | Tom Lane | 2020-12-19 22:58:30 +0000 |
commit | 08b01d4dd982b491a2f9641804b368185b8f4c53 (patch) | |
tree | 45a2eb6863c5eda15d399c76e357977ff84d6eb6 | |
parent | 20659fd8e5ecb3bcb3e337581c4bd7123d490ddc (diff) |
Remove now-useless ALWAYS_SUBDIRS entry in src/test/Makefile.
Commit 257836a75 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.
-rw-r--r-- | src/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index 14cde4f5bac..ab1ef9a4753 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -38,7 +38,7 @@ endif # clean" etc to recurse into them. (We must filter out those that we # have conditionally included into SUBDIRS above, else there will be # 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 # installcheck and install should not recurse into the subdirectory "modules". |