2009-05-21 12:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmk2/hbmk2.prg
    - Removed file extension retaining hack for win platforms.
      Please be aware that *.prg means *.prg* on Windows platforms.
This commit is contained in:
Viktor Szakats
2009-05-21 10:24:57 +00:00
parent d039f3bec7
commit a3b8948354
2 changed files with 6 additions and 14 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-21 12:24 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
- Removed file extension retaining hack for win platforms.
Please be aware that *.prg means *.prg* on Windows platforms.
2009-05-21 11:19 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/filebuf.c
! refuse to share file handles if they were open in different mode

View File

@@ -4357,9 +4357,6 @@ STATIC FUNCTION FN_Expand( cFileName, lCommandLine )
LOCAL aFileList
LOCAL aFile
LOCAL aDir
#if defined( __PLATFORM__WINDOWS )
LOCAL cExt
#endif
#if defined( __PLATFORM__UNIX )
/* Disable expansion if this came from the command line */
@@ -4376,19 +4373,9 @@ STATIC FUNCTION FN_Expand( cFileName, lCommandLine )
aFileList := {}
#if defined( __PLATFORM__WINDOWS )
cExt := FN_ExtGet( cFileName )
#endif
aDir := Directory( cFileName )
FOR EACH aFile IN aDir
#if defined( __PLATFORM__WINDOWS )
/* Workaround to not find 'hello.prga' when looking for '*.prg' */
IF Lower( FN_ExtGet( aFile[ F_NAME ] ) ) == Lower( cExt )
#endif
AAdd( aFilelist, hb_FNameMerge( FN_DirGet( cFileName ), aFile[ F_NAME ] ) )
#if defined( __PLATFORM__WINDOWS )
ENDIF
#endif
AAdd( aFilelist, hb_FNameMerge( FN_DirGet( cFileName ), aFile[ F_NAME ] ) )
NEXT
RETURN aFileList