aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>1999-06-05 10:27:31 +0000
committerTatsuo Ishii <ishii@postgresql.org>1999-06-05 10:27:31 +0000
commit7e6a9a60ff5cb730b743acca4835578e0c9c0da2 (patch)
treed3a3849ab5a3c6ac0425b920d5d022a51dd05c9e /src
parent93b57eb53383372cd21d9063e8657752a5ed0d51 (diff)
downloadpostgresql-7e6a9a60ff5cb730b743acca4835578e0c9c0da2.tar.gz
postgresql-7e6a9a60ff5cb730b743acca4835578e0c9c0da2.zip
a fix for Win32 support provided by yutaka@marin.or.jp.
The patch will avoid to add .exe suffix to the pg_encoding binary.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_encoding/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_encoding/Makefile b/src/bin/pg_encoding/Makefile
index 587abbd089d..29e33af26f9 100644
--- a/src/bin/pg_encoding/Makefile
+++ b/src/bin/pg_encoding/Makefile
@@ -6,7 +6,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/Makefile,v 1.2 1998/07/26 04:31:18 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_encoding/Attic/Makefile,v 1.3 1999/06/05 10:27:31 ishii Exp $
#
#-------------------------------------------------------------------------
@@ -23,7 +23,7 @@ pg_encoding: $(OBJS) $(LIBPQDIR)/libpq.a
$(CC) -o pg_encoding $(OBJS) -L$(LIBPQDIR) -lpq $(LDFLAGS)
install: pg_encoding
- $(INSTALL) $(INSTL_EXE_OPTS) pg_encoding $(BINDIR)/pg_encoding
+ $(INSTALL) $(INSTL_EXE_OPTS) pg_encoding$(X) $(BINDIR)/pg_encoding$(X)
depend dep:
$(CC) -MM $(CFLAGS) *.c >depend