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/plpython | |
| 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/plpython')
| -rw-r--r-- | src/pl/plpython/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index df691cf8df..5823e205dc 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) |
