From 5ec298bc0ffe92a5623040a0a739ac31a5db736a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 25 Jun 2010 08:13:08 +0000 Subject: [PATCH] 2010-06-25 10:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * external/patchup.prg ! Minor fix to make Makefile line splitting eol type agnostic. --- harbour/ChangeLog | 4 ++++ harbour/external/patchup.prg | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 21f630b75f..9781c64b8f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-06-25 10:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * external/patchup.prg + ! Minor fix to make Makefile line splitting eol type agnostic. + 2010-06-25 09:26 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/gtwvg/wvgcuig.c * contrib/gtwvg/wvgwin.c diff --git a/harbour/external/patchup.prg b/harbour/external/patchup.prg index 2e1b42a612..bcaa2c0215 100644 --- a/harbour/external/patchup.prg +++ b/harbour/external/patchup.prg @@ -278,7 +278,7 @@ PROCEDURE Main( ... ) cFile := MemoRead( "Makefile" ) cDiffFile := NIL /* default to `no local diff' */ - FOR EACH cMemoLine IN hb_ATokens( cFile, OSNL ) + FOR EACH cMemoLine IN hb_ATokens( StrTran( cFile, Chr( 13 ) ), Chr( 10 ) ) cMemoLine := AllTrim( cMemoLine )