summaryrefslogtreecommitdiff
path: root/src/backend/bootstrap
diff options
context:
space:
mode:
authorBruce Momjian1999-12-09 19:15:45 +0000
committerBruce Momjian1999-12-09 19:15:45 +0000
commit3ffd3d82dbbd86d4d66b3eb7cc9f08434db6dd55 (patch)
tree386169facc3f13dcd4f3009439745c12e5aca57e /src/backend/bootstrap
parentcb0032cdcfd252317e3302a43b725706b1f900e0 (diff)
Make LD -r as macros that can be changed for QNX.
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r--src/backend/bootstrap/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile
index ccf8f46a24..3655c07320 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.15 1998/07/26 04:30:17 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.16 1999/12/09 19:14:34 momjian Exp $
#
#
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
@@ -37,7 +37,7 @@ OBJS= bootparse.o bootscanner.o bootstrap.o
all: SUBSYS.o
SUBSYS.o: $(OBJS)
- $(LD) -r -o SUBSYS.o $(OBJS)
+ $(LD) $(LDREL) -o SUBSYS.o $(OBJS)
# bootstrap.o's dependency on bootstrap_tokens.h is computed by the
# make depend, but we state it here explicitly anyway because