aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2024-09-04 08:05:56 +0900
committerMichael Paquier <michael@paquier.xyz>2024-09-04 08:05:56 +0900
commitff43b5e70d45c8d39ca7513e10c23367435c9826 (patch)
treeb3e95f12e27fec7ece3ea9153d8d9b79924cc522 /src
parent94f1474e600fdbc6b325f69903eecfeb1f69fcbd (diff)
downloadpostgresql-ff43b5e70d45c8d39ca7513e10c23367435c9826.tar.gz
postgresql-ff43b5e70d45c8d39ca7513e10c23367435c9826.zip
Simplify makefiles exporting twice enable_injection_points
This is confusing, as it exports twice the same variable. Oversight in 6782709df81f that has spread in more places afterwards. Reported-by: Alvaro Herrera, Tom Lane Discussion: https://postgr.es/m/202408201630.mn6vbohjh7hh@alvherre.pgsql Backpatch-through: 17
Diffstat (limited to 'src')
-rw-r--r--src/test/modules/test_misc/Makefile2
-rw-r--r--src/test/recovery/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/modules/test_misc/Makefile b/src/test/modules/test_misc/Makefile
index a958d156f47..919a25fc67f 100644
--- a/src/test/modules/test_misc/Makefile
+++ b/src/test/modules/test_misc/Makefile
@@ -4,7 +4,7 @@ TAP_TESTS = 1
EXTRA_INSTALL=src/test/modules/injection_points
-export enable_injection_points enable_injection_points
+export enable_injection_points
ifdef USE_PGXS
PG_CONFIG = pg_config
diff --git a/src/test/recovery/Makefile b/src/test/recovery/Makefile
index f57baba5e89..d40c05a566d 100644
--- a/src/test/recovery/Makefile
+++ b/src/test/recovery/Makefile
@@ -18,7 +18,7 @@ subdir = src/test/recovery
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
-export enable_injection_points enable_injection_points
+export enable_injection_points
# required for 017_shm.pl and 027_stream_regress.pl
REGRESS_SHLIB=$(abs_top_builddir)/src/test/regress/regress$(DLSUFFIX)