diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-12-16 01:25:23 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-12-16 01:25:23 +0000 |
| commit | 7585deb0878bca96eee9a3e00fb5726c7725831c (patch) | |
| tree | abbc9add268b6fbc32af0871f8d14f804681747b /src/backend/bootstrap | |
| parent | 9805abb0fb1d2d57834a233d1a34279757d3f068 (diff) | |
| download | postgresql-7585deb0878bca96eee9a3e00fb5726c7725831c.tar.gz | |
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/backend/bootstrap')
| -rw-r--r-- | src/backend/bootstrap/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile index 34010aebde..b528490fb5 100644 --- a/src/backend/bootstrap/Makefile +++ b/src/backend/bootstrap/Makefile @@ -4,7 +4,7 @@ # Makefile for the bootstrap module # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.17 1999/12/13 22:32:35 momjian Exp $ +# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.18 1999/12/16 01:25:01 momjian Exp $ # # # We must build bootparse.c and bootscanner.c with yacc and lex and sed, @@ -32,7 +32,12 @@ endif BOOTYACCS= bootstrap_tokens.h bootparse.c +ifneq ($(PORTNAME), qnx4) OBJS= bootparse.o bootscanner.o bootstrap.o +else +# wlink crashes with bootstrap.o +OBJS= bootparse.o bootscanner.o +endif all: SUBSYS.o |
