From: Tom Lane Date: Tue, 11 Feb 2014 17:59:48 +0000 (-0500) Subject: Flush a stray definition of $(DLLTOOL). X-Git-Tag: REL9_4_BETA1~509 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7a98d323df2d0839ebb4aab2004c626b64343b76;p=thirdparty%2Fpostgresql.git Flush a stray definition of $(DLLTOOL). Even if this is needed, it'd be configure's responsibility to set it. --- diff --git a/src/makefiles/Makefile.cygwin b/src/makefiles/Makefile.cygwin index 863732f5984..bd83e5f723e 100644 --- a/src/makefiles/Makefile.cygwin +++ b/src/makefiles/Makefile.cygwin @@ -1,5 +1,5 @@ -DLLTOOL= dlltool # src/makefiles/Makefile.cygwin + ifdef PGXS BE_DLLLIBS= -L$(libdir) -lpostgres else @@ -43,4 +43,4 @@ endif # Rule for building a shared library from a single .o file %.dll: %.o - $(CC) $(CFLAGS) -shared -o $@ $< $(LDFLAGS) $(LDFLAGS_SL) $(BE_DLLLIBS) + $(CC) $(CFLAGS) -shared -o $@ $< $(LDFLAGS) $(LDFLAGS_SL) $(BE_DLLLIBS)