diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2008-03-18 16:24:50 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2008-03-18 16:24:50 +0000 |
| commit | 8c87cc370f427515b4aa9b03e64a8878de4b6a22 (patch) | |
| tree | 1e9278f101716ad5b081752ebab8d09cb24db3b1 /src/pl/Makefile | |
| parent | 184c42d20d980cd441139a164259f67a9c088264 (diff) | |
| download | postgresql-8c87cc370f427515b4aa9b03e64a8878de4b6a22.tar.gz | |
Catch all errors in for and while loops in makefiles. Don't ignore any
errors in any commands, including in various clean targets that have so far
been handled inconsistently. make -i is available to ignore all errors in
a consistent and official way.
Diffstat (limited to 'src/pl/Makefile')
| -rw-r--r-- | src/pl/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/pl/Makefile b/src/pl/Makefile index 4a0f365472..fa06459a9b 100644 --- a/src/pl/Makefile +++ b/src/pl/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/pl/Makefile,v 1.26 2007/06/01 19:38:07 tgl Exp $ +# $PostgreSQL: pgsql/src/pl/Makefile,v 1.27 2008/03/18 16:24:50 petere Exp $ # #------------------------------------------------------------------------- @@ -26,11 +26,8 @@ ifeq ($(with_tcl), yes) DIRS += tcl endif -all install installdirs uninstall distprep: - @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit 1; done - -clean distclean maintainer-clean: - @for dir in $(DIRS); do $(MAKE) -C $$dir $@; done +all install installdirs uninstall distprep clean distclean maintainer-clean: + @for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done # We'd like check operations to run all the subtests before failing. check installcheck: |
