diff options
| author | Tom Lane | 2006-07-19 02:37:00 +0000 |
|---|---|---|
| committer | Tom Lane | 2006-07-19 02:37:00 +0000 |
| commit | a38c85bd5d928115fdd22c9e28e0a7eeebc9878e (patch) | |
| tree | 6a83928ce08c3f811e75dce1f89ac5802ef082ab /src/pl | |
| parent | 88295244be6a86aaa09a822ee857484cb46fd3ca (diff) | |
Rewrite pg_regress as a C program instead of a shell script.
This allows it to be used on Windows without installing mingw
(though you do still need 'diff'), and opens the door to future
improvements such as message localization.
Magnus Hagander and Tom Lane.
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plperl/GNUmakefile | 6 | ||||
| -rw-r--r-- | src/pl/plpython/Makefile | 6 | ||||
| -rw-r--r-- | src/pl/tcl/Makefile | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index 1831f9ddf8a..73f36bd44ac 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -1,5 +1,5 @@ # Makefile for PL/Perl -# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.26 2005/12/09 21:19:36 petere Exp $ +# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.27 2006/07/19 02:37:00 tgl Exp $ subdir = src/pl/plperl top_builddir = ../../.. @@ -84,11 +84,11 @@ uninstall: rm -f '$(DESTDIR)$(pkglibdir)/plperl$(DLSUFFIX)' installcheck: submake - $(SHELL) $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) + $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) .PHONY: submake submake: - $(MAKE) -C $(top_builddir)/src/test/regress pg_regress + $(MAKE) -C $(top_builddir)/src/test/regress pg_regress$(X) clean distclean maintainer-clean: clean-lib rm -f SPI.c $(OBJS) diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index df691cf8dfe..5823e205dcd 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.24 2005/12/09 21:19:36 petere Exp $ +# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.25 2006/07/19 02:37:00 tgl Exp $ subdir = src/pl/plpython top_builddir = ../../.. @@ -103,11 +103,11 @@ uninstall: rm -f '$(DESTDIR)$(pkglibdir)/plpython$(DLSUFFIX)' installcheck: submake - $(SHELL) $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) + $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) .PHONY: submake submake: - $(MAKE) -C $(top_builddir)/src/test/regress pg_regress + $(MAKE) -C $(top_builddir)/src/test/regress pg_regress$(X) clean distclean maintainer-clean: clean-lib rm -f $(OBJS) diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile index d953c4bff83..a474c71e2d9 100644 --- a/src/pl/tcl/Makefile +++ b/src/pl/tcl/Makefile @@ -2,7 +2,7 @@ # # Makefile for the pltcl shared object # -# $PostgreSQL: pgsql/src/pl/tcl/Makefile,v 1.48 2005/12/09 21:19:36 petere Exp $ +# $PostgreSQL: pgsql/src/pl/tcl/Makefile,v 1.49 2006/07/19 02:37:00 tgl Exp $ # #------------------------------------------------------------------------- @@ -90,11 +90,11 @@ uninstall: $(MAKE) -C modules $@ installcheck: submake - $(SHELL) $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) + $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) .PHONY: submake submake: - $(MAKE) -C $(top_builddir)/src/test/regress pg_regress + $(MAKE) -C $(top_builddir)/src/test/regress pg_regress$(X) else # TCL_SHARED_BUILD = 0 |
