diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-08-12 21:44:51 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-08-12 21:44:51 +0000 |
commit | bb2ffe9acf6d6aedeae06041bbd70f8ffbcb3f2a (patch) | |
tree | 8bba0b768d9cbb3f8ee5d408c63b4dbc64e6d5f2 | |
parent | fab177e64f44fcad40c88903a903fd981a8bd2cb (diff) | |
download | postgresql-bb2ffe9acf6d6aedeae06041bbd70f8ffbcb3f2a.tar.gz postgresql-bb2ffe9acf6d6aedeae06041bbd70f8ffbcb3f2a.zip |
Back out plpython makefile change.
-rw-r--r-- | src/pl/plpython/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 1ce9a4e51c0..ae65a032236 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.22 2005/08/12 20:57:11 momjian Exp $ +# $PostgreSQL: pgsql/src/pl/plpython/Makefile,v 1.23 2005/08/12 21:44:51 momjian Exp $ subdir = src/pl/plpython top_builddir = ../../.. @@ -9,7 +9,7 @@ include $(top_builddir)/src/Makefile.global # shared library. Since there is no official way to determine this # (at least not in pre-2.3 Python), we see if there is a file that is # named like a shared library. -ifneq (,$(wildcard $(python_libdir)/../../libpython*$(DLSUFFIX)*)) +ifneq (,$(wildcard $(python_libdir)/libpython*$(DLSUFFIX)*)) shared_libpython = yes endif |