Re: [HACKERS] Re: Update doc changes needed

From: SL Baur <steve(at)beopen(dot)com>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: pgsql-patches(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Re: Update doc changes needed
Date: 2000-06-12 02:03:40
Message-ID: m31z23irk3.fsf@musashimaru.jp.tlan
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:

> Can you resend it? I don't see it in my mailbox anymore.

>> Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:
>>
>> > OK, seems the issue is closed.
>>
>> Yes, it is closed.
>>
>> What happened to the patch I sent regarding the bug in the TCL
>> Makefile where the make bombs if "." is not in the builder's path?
>> The last I checked, it wasn't applied and the fix is very easy
>> (explicitly use "./" to call the script).

(Remade against current CVS sources).

Index: src/pl/tcl/Makefile
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/src/pl/tcl/Makefile,v
retrieving revision 1.15
diff -u -r1.15 Makefile
--- src/pl/tcl/Makefile 2000/05/29 05:45:54 1.15
+++ src/pl/tcl/Makefile 2000/06/12 01:59:33
@@ -124,7 +124,7 @@
#

Makefile.tcldefs: mkMakefile.tcldefs.sh
- /bin/sh mkMakefile.tcldefs.sh
+ /bin/sh ./mkMakefile.tcldefs.sh

#
# Clean
Index: src/bin/pgtclsh/Makefile
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/src/bin/pgtclsh/Makefile,v
retrieving revision 1.25
diff -u -r1.25 Makefile
--- src/bin/pgtclsh/Makefile 2000/03/08 01:58:21 1.25
+++ src/bin/pgtclsh/Makefile 2000/06/12 02:00:11
@@ -59,10 +59,10 @@
$(INSTALL) $(INSTL_EXE_OPTS) pgtksh $(BINDIR)/pgtksh

Makefile.tcldefs: mkMakefile.tcldefs.sh
- /bin/sh mkMakefile.tcldefs.sh
+ /bin/sh ./mkMakefile.tcldefs.sh

Makefile.tkdefs: mkMakefile.tkdefs.sh
- /bin/sh mkMakefile.tkdefs.sh
+ /bin/sh ./mkMakefile.tkdefs.sh

clean:
rm -f *.o Makefile.t*defs pgtclsh pgtksh

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2000-06-12 02:23:24 Re: [HACKERS] Re: Update doc changes needed
Previous Message Bruce Momjian 2000-06-12 01:02:11 Re: odbc patches