See changelog 2000-12-11 21:45 GMT -3

This commit is contained in:
Luiz Rafael Culik
2000-12-11 23:50:40 +00:00
parent 6542f93e62
commit 70387ab6bb
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2000-12-11 21:45 GMT -3 Luiz Rafael Culik <culik@sl.conex.net>
*utils/hbmake/hbmake.prg
*Fixed an small bug
2000-12-11 21:45 GMT+1 Maurilio Longo <maurilio.longo@libero.it>
* source/rtl/tbrowse.prg
- removed hidden: clause inside class definition (it doesn't work right now)

View File

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