From 2682e5647b2770bf82848e0ce208445ef2a21f10 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Sat, 5 Jun 1999 10:27:31 +0000 Subject: [PATCH] a fix for Win32 support provided by yutaka@marin.or.jp. The patch will avoid to add .exe suffix to the pg_encoding binary. --- src/bin/pg_encoding/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_encoding/Makefile b/src/bin/pg_encoding/Makefile index 61ddcafc48..91fd2e0020 100644 --- a/src/bin/pg_encoding/Makefile +++ b/src/bin/pg_encoding/Makefile @@ -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 -- 2.39.5