summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2014-02-11 12:59:48 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2014-02-11 12:59:48 -0500
commit7a98d323df2d0839ebb4aab2004c626b64343b76 (patch)
treeaf7950c2ed19616219d2f4b6bda8fd34a62e82d3
parent846e91e0223cf9f2821c3ad4dfffffbb929cb027 (diff)
Flush a stray definition of $(DLLTOOL).
Even if this is needed, it'd be configure's responsibility to set it.
-rw-r--r--src/makefiles/Makefile.cygwin4
1 files changed, 2 insertions, 2 deletions
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)