diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-07-21 20:23:05 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-07-21 20:23:05 +0000 |
| commit | 8dec0c1bf2f1bb1535c7fae63ab64eeff3190760 (patch) | |
| tree | fb199665ef95ed7b4bbceab1978a69476a5720f1 /src/backend/Makefile | |
| parent | 83997560b755523545424f7e8909e656b0f3f500 (diff) | |
| download | postgresql-8dec0c1bf2f1bb1535c7fae63ab64eeff3190760.tar.gz | |
lease find enclosed a patch that matches the PL/Perl documentation
(fairly closely, I hope) to the current PL/Perl implementation.
David Fetter
Diffstat (limited to 'src/backend/Makefile')
| -rw-r--r-- | src/backend/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index b106353abc..bee3ea44b6 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.101 2004/07/19 17:03:56 tgl Exp $ +# $PostgreSQL: pgsql/src/backend/Makefile,v 1.102 2004/07/21 20:22:58 momjian Exp $ # #------------------------------------------------------------------------- @@ -29,13 +29,13 @@ endif ########################################################################## -all: submake-libpgport postgres $(POSTGRES_IMP) +all: submake-libpgport submake-libpq postgres $(POSTGRES_IMP) ifneq ($(PORTNAME), cygwin) ifneq ($(PORTNAME), win32) postgres: $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $(export_dynamic) $^ $(LIBS) -o $@ + $(CC) $(CFLAGS) $(LDFLAGS) -I $(libpq_srcdir) $(export_dynamic) $^ $(LIBS) $(libpq) -o $@ endif endif |
