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/test/locale/koi8-to-win1251 | |
| 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/test/locale/koi8-to-win1251')
| -rw-r--r-- | src/test/locale/koi8-to-win1251/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/test/locale/koi8-to-win1251/Makefile b/src/test/locale/koi8-to-win1251/Makefile index 281014521e..fd8301928e 100644 --- a/src/test/locale/koi8-to-win1251/Makefile +++ b/src/test/locale/koi8-to-win1251/Makefile @@ -1,12 +1,7 @@ -# -# Makefile for example programs -# - all: - -@echo "make: Nothing to be done for \`all'." test: - @./runall + ./runall clean: rm -f *.out |
