summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDickson S. Guedes2011-06-14 23:29:37 +0000
committerDickson S. Guedes2011-06-14 23:29:37 +0000
commitcf1b176494d7f8c5390726644ba7849a88bf73cf (patch)
tree7d8f7b8884d54e8653a2c252df96dba6716d30e4
parentb187432f4f8de8a0fd8302b543aaad0185ec6b74 (diff)
Fixing extension in template
Fix #12, per report from Hitoshi Harada
-rw-r--r--lib/pgxn_utils/templates/root/Makefile.tt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pgxn_utils/templates/root/Makefile.tt b/lib/pgxn_utils/templates/root/Makefile.tt
index ff0022e..2cbd6c6 100644
--- a/lib/pgxn_utils/templates/root/Makefile.tt
+++ b/lib/pgxn_utils/templates/root/Makefile.tt
@@ -2,7 +2,7 @@ EXTENSION = <%= extension_name %>
EXTVERSION = $(shell grep default_version $(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
DATA = $(filter-out $(wildcard sql/*--*.sql),$(wildcard sql/*.sql))
-DOCS = $(wildcard doc/*.txt)
+DOCS = $(wildcard doc/*.md)
TESTS = $(wildcard test/sql/*.sql)
REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
REGRESS_OPTS = --inputdir=test --load-language=plpgsql