Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 80b6185

Browse files
committed
Use $(CC), not gcc, to compile
Pointed out by: igor@cs.cs.miami.edu
1 parent 986bfc5 commit 80b6185

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#
3535
#
3636
# IDENTIFICATION
37-
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.21 1997/03/25 08:14:25 scrappy Exp $
37+
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.22 1997/04/02 00:34:23 scrappy Exp $
3838
#
3939
#-------------------------------------------------------------------------
4040

@@ -60,7 +60,7 @@ endif
6060
all: postgres $(EXP) global1.bki.source local1_template1.bki.source
6161

6262
postgres: $(OBJS) ../utils/version.o
63-
gcc -o postgres $(LDFLAGS) $(OBJS) ../utils/version.o $(LD_ADD)
63+
$(CC) -o postgres $(LDFLAGS) $(OBJS) ../utils/version.o $(LD_ADD)
6464

6565
$(OBJS): $(DIRS:%=%.dir)
6666

0 commit comments

Comments
 (0)