diff options
author | Noah Misch <noah@leadboat.com> | 2014-11-02 21:43:30 -0500 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-11-02 21:45:01 -0500 |
commit | f229170c75f0ce64b1b9a0a362571d1f19089de4 (patch) | |
tree | f5cb913d4b419a18c71d6de34fbda5a77ba441ca /src | |
parent | 63d2c0c573ff2a9ba0391576dc569260b4de5dd9 (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.
Diffstat (limited to 'src')
-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 020861a4f8b..03de9af0b3e 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -73,8 +73,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 |