summaryrefslogtreecommitdiff
path: root/src/backend/Makefile
diff options
context:
space:
mode:
authorBruce Momjian2004-07-21 20:34:50 +0000
committerBruce Momjian2004-07-21 20:34:50 +0000
commit7a55ba76151db6baf8760e035468f95b77b73153 (patch)
tree1df3c3cfdaf0bd279a7eb091fd9b4183597d484c /src/backend/Makefile
parent8dec0c1bf2f1bb1535c7fae63ab64eeff3190760 (diff)
Back out pg_autovacuum commit after cvs clean failure causes commit.
Diffstat (limited to 'src/backend/Makefile')
-rw-r--r--src/backend/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile
index bee3ea44b67..fb91930b53d 100644
--- a/src/backend/Makefile
+++ b/src/backend/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/backend/Makefile,v 1.102 2004/07/21 20:22:58 momjian Exp $
+# $PostgreSQL: pgsql/src/backend/Makefile,v 1.103 2004/07/21 20:34:44 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -29,13 +29,13 @@ endif
##########################################################################
-all: submake-libpgport submake-libpq postgres $(POSTGRES_IMP)
+all: submake-libpgport postgres $(POSTGRES_IMP)
ifneq ($(PORTNAME), cygwin)
ifneq ($(PORTNAME), win32)
postgres: $(OBJS)
- $(CC) $(CFLAGS) $(LDFLAGS) -I $(libpq_srcdir) $(export_dynamic) $^ $(LIBS) $(libpq) -o $@
+ $(CC) $(CFLAGS) $(LDFLAGS) $(export_dynamic) $^ $(LIBS) -o $@
endif
endif