summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2009-08-18 15:51:16 +0000
committerTom Lane2009-08-18 15:51:16 +0000
commit42b7e9a9ed392b02b801db60bd5c71adbdf8f8fb (patch)
tree4377a56b771636671fc82caa9e0479f9ddb51133
parent9162f0e13a6806b83373d4bed44bb2f83ecd1585 (diff)
Fix copy-and-pasteo that might explain some of the buildfarm's
indigestion about this module.
-rw-r--r--contrib/unaccent/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/contrib/unaccent/Makefile b/contrib/unaccent/Makefile
index 0226912d49..ee55c4a2f8 100644
--- a/contrib/unaccent/Makefile
+++ b/contrib/unaccent/Makefile
@@ -8,17 +8,16 @@ DATA = uninstall_unaccent.sql
DATA_TSEARCH = unaccent.rules
REGRESS = unaccent
+# Adjust REGRESS_OPTS because we need a UTF8 database
+REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB) --multibyte=UTF8 --no-locale
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
-subdir = contrib/pg_trgm
+subdir = contrib/unaccent
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
-
-#redefine REGRESS_OPTS because of needings of UTF8 database
-REGRESS_OPTS = --dbname=$(CONTRIB_TESTDB) --multibyte=UTF8 --no-locale