diff options
Diffstat (limited to 'src/pl/plpython/Makefile')
-rw-r--r-- | src/pl/plpython/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 782d07ee3f5..dd92986304e 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -1,4 +1,4 @@ -# $Header: /cvsroot/pgsql/src/pl/plpython/Makefile,v 1.9 2001/08/27 00:29:49 petere Exp $ +# $Header: /cvsroot/pgsql/src/pl/plpython/Makefile,v 1.10 2001/09/16 16:11:11 petere Exp $ subdir = src/pl/plpython top_builddir = ../../.. @@ -17,8 +17,8 @@ endif ifneq (,$(findstring yes, $(shared_libpython)$(allow_nonpic_in_shlib))) override CPPFLAGS := -I$(srcdir) $(python_includespec) $(CPPFLAGS) - override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS) +rpath := NAME = plpython SO_MAJOR_VERSION = 0 @@ -33,13 +33,13 @@ include $(top_srcdir)/src/Makefile.shlib all: all-lib install: all installdirs - $(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(libdir)/plpython$(DLSUFFIX) + $(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(pkglibdir)/plpython$(DLSUFFIX) installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) + $(mkinstalldirs) $(DESTDIR)$(pkglibdir) uninstall: - rm -f $(DESTDIR)$(libdir)/plpython$(DLSUFFIX) + rm -f $(DESTDIR)$(pkglibdir)/plpython$(DLSUFFIX) clean distclean maintainer-clean: clean-lib rm -f $(OBJS) |