Skip to content

Commit 0d147e4

Browse files
committed
Remove dependency on the DLL of pythonxx.def file.
This confused Cygwin's make because of the colon in the path. The DLL isn't likely to change under us so preserving the dependency doesn't gain us much, and it's useful to be able to do a native Windows build with the Cygwin mingw toolset. Noah Misch.
1 parent 80b011e commit 0d147e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pl/plpython/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ OBJS += libpython${pytverstr}.a
6666
libpython${pytverstr}.a: python${pytverstr}.def
6767
dlltool --dllname python${pytverstr}.dll --def python${pytverstr}.def --output-lib libpython${pytverstr}.a
6868
WD=$(subst \,/,$(WINDIR))
69-
python${pytverstr}.def: $(WD)/system32/python${pytverstr}.dll
69+
python${pytverstr}.def:
7070
pexports $(WD)/system32/python${pytverstr}.dll > python${pytverstr}.def
7171
endif
7272

0 commit comments

Comments
 (0)