1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

This simple patch fixes broken Makefile, broken ApplySnapshot and

makes all utilities honour --verbose command line option.

--
Yours, Alexey V. Borzov, Webmaster of RDW.ru
This commit is contained in:
Bruce Momjian
2002-03-06 20:41:36 +00:00
parent c666d6fd41
commit 0df1dc6aaf
7 changed files with 15 additions and 3 deletions

View File

@@ -22,10 +22,10 @@ override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS)
all: $(SQLS) $(TCLS) $(PERLS) $(SCRIPTS) $(SONAME)
%.sql: %.sql.in
sed 's,@MODULE_FILENAME@,$$libdir/$(NAME),g' $< >$@
sed 's,@MODULE_FILENAME@,$(pkglibdir)/$(SONAME),g' $< >$@
$(PERLS) $(TCLS) $(SCRIPTS): %: %.in
sed -e 's,@MODULE_FILENAME@,$$libdir/$(NAME),g' \
sed -e 's,@MODULE_FILENAME@,$(pkglibdir)/$(SONAME),g' \
-e 's:@SQLDIR@:$(datadir)/contrib:g' \
-e 's:@BINDIR@:$(bindir):g' \
-e 's:@LIBDIR@:$(datadir)/contrib:g' $< >$@