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 ; \
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 ; \
#
# 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 $
#
#-------------------------------------------------------------------
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"; \