Skip to content

Commit c312362

Browse files
committed
Fix build on deb
1 parent 40bcfdc commit c312362

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

contrib/fulleq/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ include $(top_builddir)/src/Makefile.global
2323
include $(top_srcdir)/contrib/contrib-global.mk
2424
endif
2525

26-
fulleq--1.0.sql: fulleq--1.0.sql.in
27-
echo 'BEGIN;' > $@
26+
fulleq--1.0.sql: fulleq--1.0.sql.in.in
27+
echo '\echo Use "CREATE EXTENSION fulleq" to load this file. \quit' > $@
2828
echo 'SET search_path = public;' >> $@
2929
for type in $(ARGTYPE); \
3030
do \
3131
sed -e "s/ARGTYPE/$$type/g" < $< >> $@; \
3232
done
33-
echo 'COMMIT;' >> $@
3433

contrib/mchar/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ MODULE_big = mchar
22
OBJS = mchar_io.o mchar_proc.o mchar_op.o mchar_recode.o \
33
mchar_like.o
44
EXTENSION = mchar
5-
DATA = mchar--1.0.sql uninstall_mchar--1.0.sql
5+
DATA = mchar--1.0.sql
66
DOCS = README.mchar
77
REGRESS = init mchar mvarchar mm like compat
88
PGFIELDDESC = "mchar - mchar type implementation"

0 commit comments

Comments
 (0)