summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2014-11-02 21:43:30 -0500
committerNoah Misch <noah@leadboat.com>2014-11-02 21:43:30 -0500
commit00c07e497f31e44ddf971e2d5f14240971ed5175 (patch)
tree9d7d5f1ba8847a28915eeea626ba2950e1d4faa5
parent67a412049489f554c3a552bd523cefd30d038221 (diff)
Re-remove dependency on the DLL of pythonxx.def file.
The reasons behind commit 0d147e43adcf5d2bff9caa073608f381a27439bf still stand, so this reverts the non-cosmetic portion of commit a7983e989d9cafc9cef49becfee054e34b1ed9b4. Back-patch to 9.4, where the latter commit first appeared.
-rw-r--r--src/pl/plpython/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile
index 9c0fc613f9a..430aa891270 100644
--- a/src/pl/plpython/Makefile
+++ b/src/pl/plpython/Makefile
@@ -76,8 +76,8 @@ OBJS += libpython${pytverstr}.a
libpython${pytverstr}.a: python${pytverstr}.def
dlltool --dllname python${pytverstr}.dll --def python${pytverstr}.def --output-lib libpython${pytverstr}.a
-python${pytverstr}.def: $(PYTHONDLL)
- pexports $^ > $@
+python${pytverstr}.def:
+ pexports $(PYTHONDLL) > $@
endif # win32