diff options
| author | Bruce Momjian | 1999-12-16 01:25:23 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-12-16 01:25:23 +0000 |
| commit | 7585deb0878bca96eee9a3e00fb5726c7725831c (patch) | |
| tree | abbc9add268b6fbc32af0871f8d14f804681747b /src/interfaces | |
| parent | 9805abb0fb1d2d57834a233d1a34279757d3f068 (diff) | |
I have done the QNX4 port with the current source tree. The number of
backend/Makefiles to be patched could significantly be reduced since
they
have been adopted to the QNX4 needs.
Andreas Kardos
Diffstat (limited to 'src/interfaces')
| -rw-r--r-- | src/interfaces/Makefile | 4 | ||||
| -rw-r--r-- | src/interfaces/libpgeasy/Makefile.in | 4 | ||||
| -rw-r--r-- | src/interfaces/libpgtcl/Makefile.in | 4 | ||||
| -rw-r--r-- | src/interfaces/libpq++/Makefile.in | 6 | ||||
| -rw-r--r-- | src/interfaces/libpq/Makefile.in | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile index a05f8a9266..be6296bb42 100644 --- a/src/interfaces/Makefile +++ b/src/interfaces/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.30 1999/10/11 18:05:39 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.31 1999/12/16 01:25:15 momjian Exp $ # #------------------------------------------------------------------------- @@ -53,7 +53,7 @@ install-perl5: perl5/Makefile $(MAKE) -C perl5 clean cd perl5 && POSTGRES_HOME="$(POSTGRESDIR)" $(PERL) Makefile.PL $(MAKE) -C perl5 all - @if [ -w `sed -n -e 's/^ *INSTALLSITELIB *= *//p' perl5/Makefile` ]; then \ + -@if [ -w `sed -n -e 's/^ *INSTALLSITELIB *= *//p' perl5/Makefile` ]; then \ $(MAKE) $(MFLAGS) -C perl5 install; \ rm -f perl5/Makefile; \ else \ diff --git a/src/interfaces/libpgeasy/Makefile.in b/src/interfaces/libpgeasy/Makefile.in index 2fca3f51a8..0988e3eb73 100644 --- a/src/interfaces/libpgeasy/Makefile.in +++ b/src/interfaces/libpgeasy/Makefile.in @@ -4,7 +4,7 @@ # Makefile for pgeasy library # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgeasy/Attic/Makefile.in,v 1.3 1999/10/11 18:51:09 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgeasy/Attic/Makefile.in,v 1.4 1999/12/16 01:25:16 momjian Exp $ # #------------------------------------------------------------------------- @@ -41,7 +41,7 @@ include $(SRCDIR)/Makefile.shlib install: install-headers install-lib $(install-shlib-dep) install-headers: libpgeasy.h - @if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi + -@if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi $(INSTALL) $(INSTLOPTS) libpgeasy.h $(HEADERDIR)/libpgeasy.h .PHONY: clean diff --git a/src/interfaces/libpgtcl/Makefile.in b/src/interfaces/libpgtcl/Makefile.in index 7e35160380..5516f9dc17 100644 --- a/src/interfaces/libpgtcl/Makefile.in +++ b/src/interfaces/libpgtcl/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.36 1999/10/11 17:46:59 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.37 1999/12/16 01:25:17 momjian Exp $ # #------------------------------------------------------------------------- @@ -46,7 +46,7 @@ install-headers: beforeinstall-headers libpgtcl.h $(INSTALL) $(INSTLOPTS) libpgtcl.h $(HEADERDIR)/libpgtcl.h beforeinstall-headers: - @if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi + -@if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi .PHONY: clean diff --git a/src/interfaces/libpq++/Makefile.in b/src/interfaces/libpq++/Makefile.in index f30156f219..e9d3aa5d1f 100644 --- a/src/interfaces/libpq++/Makefile.in +++ b/src/interfaces/libpq++/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.18 1999/12/03 17:35:05 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.19 1999/12/16 01:25:20 momjian Exp $ # #------------------------------------------------------------------------- @@ -90,8 +90,8 @@ install-headers: beforeinstall-headers $(MAINHEADER) done beforeinstall-headers: - @if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi - @if [ ! -d $(LIBPGXXHEADERDIR) ]; then mkdir $(LIBPGXXHEADERDIR); fi + -@if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi + -@if [ ! -d $(LIBPGXXHEADERDIR) ]; then mkdir $(LIBPGXXHEADERDIR); fi .PHONY: clean diff --git a/src/interfaces/libpq/Makefile.in b/src/interfaces/libpq/Makefile.in index f614c01cc4..1d94ab826f 100644 --- a/src/interfaces/libpq/Makefile.in +++ b/src/interfaces/libpq/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.49 1999/10/13 11:38:37 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.50 1999/12/16 01:25:19 momjian Exp $ # #------------------------------------------------------------------------- @@ -77,7 +77,7 @@ $(SRCDIR)/backend/fmgr.h: install: install-headers install-lib $(install-shlib-dep) install-headers: libpq-fe.h libpq-int.h - @if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi + -@if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi $(INSTALL) $(INSTLOPTS) libpq-fe.h $(HEADERDIR)/libpq-fe.h $(INSTALL) $(INSTLOPTS) libpq-int.h $(HEADERDIR)/libpq-int.h $(INSTALL) $(INSTLOPTS) pqexpbuffer.h $(HEADERDIR)/pqexpbuffer.h |
