summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBryan Henderson <bryanh@giraffe.netgate.net>1997-01-18 07:56:52 +0000
committerBryan Henderson <bryanh@giraffe.netgate.net>1997-01-18 07:56:52 +0000
commitfdcf8b62bcbe6d45bb4f84eefe069927d1ea8538 (patch)
tree65a60e992f0575cbaa0afae0a4f3d9d257c89e8b /src
parentbc18c38d1ac0d8369c338056fce99dbbcee6c854 (diff)
Set LD = gcc for Linux so shared libpq build works.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.global6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Makefile.global b/src/Makefile.global
index c412824b79b..bfd2303d2e7 100644
--- a/src/Makefile.global
+++ b/src/Makefile.global
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.94 1997/01/14 22:58:10 momjian Exp $
+# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.95 1997/01/18 07:56:52 bryanh Exp $
#
# NOTES
# Essentially all Postgres make files include this file and use the
@@ -580,6 +580,10 @@ endif
MK_NO_LORDER= true
CC= gcc
+# gcc mainly just calls LD, but it also uses some default options that are
+# part of the gcc configuration, like search paths, and the user probably
+# wants those.
+LD= gcc
# use the regex library
USE_REGEX= 1