diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2013-03-05 19:24:29 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2013-03-05 19:24:29 -0500 |
commit | 0d147e43adcf5d2bff9caa073608f381a27439bf (patch) | |
tree | 7a7e6509d1a26d97b311f13172d95a1f86022097 /src | |
parent | 80b011ef0a13bb326861f79ba987b4fa04ae4a27 (diff) | |
download | postgresql-0d147e43adcf5d2bff9caa073608f381a27439bf.tar.gz postgresql-0d147e43adcf5d2bff9caa073608f381a27439bf.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpython/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index e9b5e3c065f..3fe8e4a7d34 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -66,7 +66,7 @@ OBJS += libpython${pytverstr}.a libpython${pytverstr}.a: python${pytverstr}.def dlltool --dllname python${pytverstr}.dll --def python${pytverstr}.def --output-lib libpython${pytverstr}.a WD=$(subst \,/,$(WINDIR)) -python${pytverstr}.def: $(WD)/system32/python${pytverstr}.dll +python${pytverstr}.def: pexports $(WD)/system32/python${pytverstr}.dll > python${pytverstr}.def endif |