diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e6b35e2fff..a234a66610 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,6 @@ +2000-12-11 21:45 GMT -3 Luiz Rafael Culik + *utils/hbmake/hbmake.prg + *Fixed an small bug 2000-12-11 21:45 GMT+1 Maurilio Longo * source/rtl/tbrowse.prg - removed hidden: clause inside class definition (it doesn't work right now) diff --git a/harbour/utils/hbmake/hbmake.prg b/harbour/utils/hbmake/hbmake.prg index 649b0748be..6f8d290912 100644 --- a/harbour/utils/hbmake/hbmake.prg +++ b/harbour/utils/hbmake/hbmake.prg @@ -970,7 +970,7 @@ Endif ? 'Setting project name' Fwrite( nLinkHandle, "PROJECT = " + Strtran( cTopfile, ".prg", ".exe" ) + CRLF ) ? 'Setting object files' -Fwrite( nLinkHandle, "OBJFILES = " +Strtran( cTopfile, ".prg", ".obj" ) ) +Fwrite( nLinkHandle, "OBJFILES = " +Strtran( cTopfile, ".prg", ".obj" ) + CRLF ) For x := 1 To Len( aobjs ) If x <> Len( aobjs ) .and. aObjs[x]<>cTopfile @@ -980,7 +980,7 @@ For x := 1 To Len( aobjs ) Endif Next ? 'Setting C Files' -Fwrite( nLinkHandle, "CFILES = " +Strtran( cTopfile, ".prg", ".c" ) ) +Fwrite( nLinkHandle, "CFILES = " +Strtran( cTopfile, ".prg", ".c" ) + CRLF ) For x := 1 To Len( acs ) If x <> Len( acs ) .and. aCs[x]<>cTopfile Fwrite( nLinkHandle, " " + aCs[ x ] )