diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-12-30 12:38:16 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-12-30 12:38:16 +0900 |
commit | 107a2d4204ff4bf4ce05e3525f0d94fc0bd497ff (patch) | |
tree | 8919b802973201a4ba47540c5d0613e4f4979fab | |
parent | f20dc2c8dd50a5c738d535205d5d44bff82d3f75 (diff) | |
download | postgresql-107a2d4204ff4bf4ce05e3525f0d94fc0bd497ff.tar.gz postgresql-107a2d4204ff4bf4ce05e3525f0d94fc0bd497ff.zip |
Remove references to libpq_srcdir in adminpack and old_snapshot
Those two modules included references to libpq's source path, without
using anything from libpq. Some copy-pastos done when each module was
created are likely at the origin of those useless references (aecf5ee
for old_snapshot, fe59e56 for adminpack).
Reviewed-by: Tom Lane, David Rowley
Discussion: https://postgr.es/m/X+LQpfLyk7jgzUki@paquier.xyz
-rw-r--r-- | contrib/adminpack/Makefile | 1 | ||||
-rw-r--r-- | contrib/old_snapshot/Makefile | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/contrib/adminpack/Makefile b/contrib/adminpack/Makefile index 630fea7726c..851504f4aef 100644 --- a/contrib/adminpack/Makefile +++ b/contrib/adminpack/Makefile @@ -4,7 +4,6 @@ MODULE_big = adminpack OBJS = \ $(WIN32RES) \ adminpack.o -PG_CPPFLAGS = -I$(libpq_srcdir) EXTENSION = adminpack DATA = adminpack--1.0.sql adminpack--1.0--1.1.sql adminpack--1.1--2.0.sql\ diff --git a/contrib/old_snapshot/Makefile b/contrib/old_snapshot/Makefile index 77c85df3225..adb557532fc 100644 --- a/contrib/old_snapshot/Makefile +++ b/contrib/old_snapshot/Makefile @@ -4,7 +4,6 @@ MODULE_big = old_snapshot OBJS = \ $(WIN32RES) \ time_mapping.o -PG_CPPFLAGS = -I$(libpq_srcdir) EXTENSION = old_snapshot DATA = old_snapshot--1.0.sql |