Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Makefile): Correct the new path of the DOCS in Makefile #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/adviser
subdir = contrib/pg_adviser
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
Expand Down
4 changes: 2 additions & 2 deletions index_adviser/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
MODULE_big = index_adviser
OBJS = index_adviser.o

DOCS = README.index_adviser
DOCS = README.txt

ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/pgadviser/index_advisor
subdir = contrib/pg_adviser/index_advisor
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
Expand Down
2 changes: 1 addition & 1 deletion pg_advise/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/pgadviser/pg_advise
subdir = contrib/pg_adviser/pg_advise
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
Expand Down
2 changes: 1 addition & 1 deletion resources/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/pgadviser/resources
subdir = contrib/pg_adviser/resources
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
Expand Down
6 changes: 3 additions & 3 deletions resources/sample_psql_session.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ drop view if exists select_index_advisory;
drop function if exists show_index_advisory(index_advisory.backend_pid%type);
drop table if exists index_advisory;

\i contrib/pgadviser/resources/index_advisory.create.sql
\i contrib/pg_adviser/resources/index_advisory.create.sql

\i contrib/pgadviser/resources/show_index_advisory.create.sql
\i contrib/pg_adviser/resources/show_index_advisory.create.sql

\i contrib/pgadviser/resources/select_index_advisory.create.sql
\i contrib/pg_adviser/resources/select_index_advisory.create.sql

drop table if exists t, t1;

Expand Down