]> granicus.if.org Git - postgresql/commitdiff
Fix unportable use of '!' in shell commands.
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 30 Dec 2000 00:24:09 +0000 (00:24 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 30 Dec 2000 00:24:09 +0000 (00:24 +0000)
Makefile
src/Makefile
src/interfaces/python/GNUmakefile

index e73686416c6c98d37d875ad10e1b503003851f6d..d0cdc303e67fee7bbabe7981a9fe475604388c56 100644 (file)
--- 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 ; \
index e73686416c6c98d37d875ad10e1b503003851f6d..d0cdc303e67fee7bbabe7981a9fe475604388c56 100644 (file)
@@ -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 ; \
index dc5fa875f9b4bdac4b339123351741168c0945f3..5bdf2b20d95f3bd87e5bfe2ee3e713dfb6afc355 100644 (file)
@@ -4,7 +4,7 @@
 #
 # Written by Peter Eisentraut  <peter_e@gmx.net>
 #
-# $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"; \