2010-09-09 23:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/make.hbs
    ! Fixed matching pathseps in filter.
This commit is contained in:
Viktor Szakats
2010-09-09 21:52:31 +00:00
parent ca9815acb6
commit 7a999f8734
2 changed files with 6 additions and 2 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-09-09 23:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/make.hbs
! Fixed matching pathseps in filter.
2010-09-09 09:19 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbqt/qtcore/g/HBQString.cpp
+ Added: missing file from prev commit.

View File

@@ -309,8 +309,8 @@ PROCEDURE GNUMake( aParams, hProjectList )
ENDIF
FOR EACH cProject IN aFilter
FOR EACH tmp IN hProjectList
IF hb_FileMatch( cProject, tmp:__enumKey() ) .OR. ;
hb_FileMatch( cProject, DirDelPathSep( FNameDirGet( PathSepToSelf( tmp:__enumKey() ) ) ) )
IF hb_FileMatch( PathSepToSelf( cProject ), PathSepToSelf( tmp:__enumKey() ) ) .OR. ;
hb_FileMatch( PathSepToSelf( cProject ), DirDelPathSep( FNameDirGet( PathSepToSelf( tmp:__enumKey() ) ) ) )
IF lFilterNegative
IF tmp:__enumKey() $ hProjectReqList
hb_HDel( hProjectReqList, tmp:__enumKey() )