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

Commit 2005450

Browse files
committed
Come to think of it, the backend doesn't use -lz either.
1 parent a4371a6 commit 2005450

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.111 2005/11/28 22:06:39 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.112 2005/11/28 22:43:30 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -22,10 +22,10 @@ SUBSYSOBJS := $(DIRS:%=%/SUBSYS.o)
2222
OBJS := $(SUBSYSOBJS) $(top_builddir)/src/port/libpgport_srv.a
2323

2424
# We put libpgport into OBJS, so remove it from LIBS
25-
LIBS := $(patsubst -lpgport, , $(LIBS))
25+
LIBS := $(filter-out -lpgport, $(LIBS))
2626

2727
# The backend doesn't need everything that's in LIBS, however
28-
LIBS := $(filter-out -lreadline -ledit -ltermcap -lncurses -lcurses, $(LIBS))
28+
LIBS := $(filter-out -lz -lreadline -ledit -ltermcap -lncurses -lcurses, $(LIBS))
2929

3030
ifeq ($(PORTNAME), qnx4)
3131
# This file crashes qnx4's wlink and is therefore not in

0 commit comments

Comments
 (0)