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.
This commit is contained in:
Viktor Szakats
2010-06-25 08:13:08 +00:00
parent 7acdc3a07f
commit 5ec298bc0f
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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 )