From ab432f204a1a53f06acd34f021524161182875f3 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 30 Dec 2000 00:24:09 +0000 Subject: Fix unportable use of '!' in shell commands. --- src/interfaces/python/GNUmakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interfaces/python') diff --git a/src/interfaces/python/GNUmakefile b/src/interfaces/python/GNUmakefile index dc5fa875f9b..5bdf2b20d95 100644 --- a/src/interfaces/python/GNUmakefile +++ b/src/interfaces/python/GNUmakefile @@ -4,7 +4,7 @@ # # Written by Peter Eisentraut # -# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.2 2000/08/31 16:12:01 petere Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/python/Attic/GNUmakefile,v 1.3 2000/12/30 00:24:09 petere Exp $ # #------------------------------------------------------------------- @@ -34,8 +34,8 @@ Setup.in: Setup.in.raw install: all @echo "Installing Python module" - @if ! ( $(INSTALL_DATA) pg.py $(python_moduledir) && \ - $(MAKE) -f Makefile install ); then \ + @if ( $(INSTALL_DATA) pg.py $(python_moduledir) && \ + $(MAKE) -f Makefile install ); then : ; else \ echo "*****" ;\ echo "* Skipping the installation of the Python interface module for lack"; \ echo "* of permissions. To install it, change to the directory"; \ -- cgit v1.2.3