diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 34d724dd32..2783797924 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +2001-10-21 08:05 GMT Dave Pearson + * source/hbmake/Makefile + * Added missing continuation character to line 14. + * utils/hbmake/hbmutils.prg + * Adding missing ")" to `if' in line 21. + 2001-10-20 20:00 GMT -3 Luiz Rafael Culik * source/compiler/harbour.c * Changed some function parameters in the _DECL section diff --git a/harbour/utils/hbmake/Makefile b/harbour/utils/hbmake/Makefile index e5b94d1005..a9c98148fe 100644 --- a/harbour/utils/hbmake/Makefile +++ b/harbour/utils/hbmake/Makefile @@ -10,7 +10,7 @@ ROOT = ../../ PRG_SOURCES=\ hbmake.prg \ - hbmutils.prg + hbmutils.prg \ fclass1.prg \ ffile1.prg \ ft_funcs.prg \ diff --git a/harbour/utils/hbmake/hbmutils.prg b/harbour/utils/hbmake/hbmutils.prg index eece8a652a..8d2af875e3 100644 --- a/harbour/utils/hbmake/hbmutils.prg +++ b/harbour/utils/hbmake/hbmutils.prg @@ -18,7 +18,7 @@ Function GetSourceFiles( lSubdir ) Local adirs AS ARRAY Local aRet AS ARRAY := {} Local lLinux := At( 'linux', Os() ) > 0 - Local cdir as String := If( !llinux, '\' + Curdir() + '\', '/' + Curdir() + '/' + Local cdir as String := If( !llinux, '\' + Curdir() + '\', '/' + Curdir() + '/' ) Local aStru := { cDir } Local aData AS ARRAY Local nCounter as numeric := 0