Remove now-useless ALWAYS_SUBDIRS entry in src/test/Makefile.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 19 Dec 2020 22:58:30 +0000 (17:58 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 19 Dec 2020 22:58:30 +0000 (17:58 -0500)
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.

src/test/Makefile

index 14cde4f5bacd1e58017f7e0c2f6c4483f6083d8f..ab1ef9a47532aa11530ba3712e3528d93353faa7 100644 (file)
@@ -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".