From 7a999f8734521fc0aca66fb4efed3e78d35b6a67 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 9 Sep 2010 21:52:31 +0000 Subject: [PATCH] 2010-09-09 23:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/make.hbs ! Fixed matching pathseps in filter. --- harbour/ChangeLog | 4 ++++ harbour/contrib/make.hbs | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1a2482a57c..a02cc7d24a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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. diff --git a/harbour/contrib/make.hbs b/harbour/contrib/make.hbs index 0483dd95a4..2ee9e4bec2 100755 --- a/harbour/contrib/make.hbs +++ b/harbour/contrib/make.hbs @@ -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() )