8000 Re-remove dependency on the DLL of pythonxx.def file. · postgres/postgres@f229170 · GitHub
[go: up one dir, main page]

Skip to content

Commit f229170

Browse files
committed
Re-remove dependency on the DLL of pythonxx.def file.
The reasons behind commit 0d147e4 still stand, so this reverts the non-cosmetic portion of commit a7983e9. Back-patch to 9.4, where the latter commit first appeared.
1 parent 63d2c0c commit f229170

File tree

1 file changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ OBJS += libpython${pytverstr}.a
7373
libpython${pytverstr}.a: python${pytverstr}.def
7474
dlltool --dllname python${pytverstr}.dll --def python${pytverstr}.def --output-lib libpython${pytverstr}.a
7575

76-
python${pytverstr}.def: $(PYTHONDLL)
77-
pexports $^ > $@
76+
python${pytverstr}.def:
77+
pexports $(PYTHONDLL) > $@
7878

7979
endif # win32
8080