summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-04-02 00:34:23 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-04-02 00:34:23 +0000
commit80b618520e1faaccb2177131af83b9f74c8a9d6d (patch)
tree62b947aadf0fb340b3dd5facf69302695a90d4ef
parent986bfc5053f6ed9d8f446dc26526f903d498106a (diff)
Use $(CC), not gcc, to compile
Pointed out by: igor@cs.cs.miami.edu
-rw-r--r--src/backend/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile
index 8f4a261941e..b8c150a3335 100644
--- a/src/backend/Makefile
+++ b/src/backend/Makefile
@@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.21 1997/03/25 08:14:25 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.22 1997/04/02 00:34:23 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -60,7 +60,7 @@ endif
all: postgres $(EXP) global1.bki.source local1_template1.bki.source
postgres: $(OBJS) ../utils/version.o
- gcc -o postgres $(LDFLAGS) $(OBJS) ../utils/version.o $(LD_ADD)
+ $(CC) -o postgres $(LDFLAGS) $(OBJS) ../utils/version.o $(LD_ADD)
$(OBJS): $(DIRS:%=%.dir)