summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-12-30 00:24:09 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-12-30 00:24:09 +0000
commitab432f204a1a53f06acd34f021524161182875f3 (patch)
tree071fbf512aec4dce75a8e91407e712af5e65565f /Makefile
parentaa44078e2117d0bff2d61e3a92f131ac4573ede3 (diff)
downloadpostgresql-ab432f204a1a53f06acd34f021524161182875f3.tar.gz
Fix unportable use of '!' in shell commands.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e73686416c..d0cdc303e6 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@
all check install installdirs installcheck uninstall dep depend clean distclean maintainer-clean:
- @if ! [ -f GNUmakefile ] ; then \
+ @if [ ! -f GNUmakefile ] ; then \
echo "You need to run the 'configure' program first. See the file"; \
echo "'INSTALL' for installation instructions." ; \
false ; \