summaryrefslogtreecommitdiff
path: root/src/pl/plpython/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plpython/Makefile')
-rw-r--r--src/pl/plpython/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile
index 9d02f4d7f4..b9a0821c0a 100644
--- a/src/pl/plpython/Makefile
+++ b/src/pl/plpython/Makefile
@@ -1,4 +1,4 @@
-# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.26 2006/07/21 00:24:04 tgl Exp $
+# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.27 2007/02/09 15:56:00 petere Exp $
subdir = src/pl/plpython
top_builddir = ../../..
@@ -17,15 +17,15 @@ endif
# and we have to remove -lpython from the link since we are building our own
ifeq ($(PORTNAME), win32)
shared_libpython = yes
-python_includespec := $(subst \,/,$(python_includespec))
-override python_libspec :=
+python_includespec = $(subst \,/,$(python_includespec))
+override python_libspec =
endif
# Darwin (OS X) has its own ideas about how to do this.
ifeq ($(PORTNAME), darwin)
shared_libpython = yes
-override python_libspec := -framework Python
-override python_additional_libs :=
+override python_libspec = -framework Python
+override python_additional_libs =
endif
# If we don't have a shared library and the platform doesn't allow it