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

Commit c52bafc

Browse files
committed
Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path.
1 parent ed69cf5 commit c52bafc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/makefiles/Makefile.cygwin

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.7 2006/01/19 20:00:54 momjian Exp $
1+
# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.8 2006/01/19 20:45:29 momjian Exp $
22
DLLTOOL= dlltool
33
DLLWRAP= dllwrap
44
ifdef PGXS
5-
BE_DLLLIBS= -L$(DESTDIR)$(libdir) -lpostgres
5+
BE_DLLLIBS= -L$(libdir) -lpostgres
66
else
77
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
88
endif

src/makefiles/Makefile.win32

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.8 2006/01/19 20:00:54 momjian Exp $
1+
# $PostgreSQL: pgsql/src/makefiles/Makefile.win32,v 1.9 2006/01/19 20:45:29 momjian Exp $
22

33
# Use replacement include files for those missing on Win32
44
override CPPFLAGS+="-I$(top_srcdir)/src/include/port/win32"
55

66
DLLTOOL= dlltool
77
DLLWRAP= dllwrap
88
ifdef PGXS
9-
BE_DLLLIBS= -L$(DESTDIR)$(libdir) -lpostgres
9+
BE_DLLLIBS= -L$(libdir) -lpostgres
1010
else
1111
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
1212
endif

0 commit comments

Comments
 (0)