mirror of https://github.com/acidanthera/audk.git
To fix tool StrGather.exe can not work correctly in Linux environment.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1863 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
8de9f9e154
commit
a7081d204a
|
@ -48,6 +48,16 @@ Abstract:
|
|||
#define MODE_PARSE 1
|
||||
#define MODE_SCAN 2
|
||||
#define MODE_DUMP 3
|
||||
//
|
||||
// Different file separater for Linux and Windows
|
||||
//
|
||||
#ifdef __GNUC__
|
||||
#define FILE_SEP_CHAR '/'
|
||||
#define FILE_SEP_STRING "/"
|
||||
#else
|
||||
#define FILE_SEP_CHAR '\\'
|
||||
#define FILE_SEP_STRING "\\"
|
||||
#endif
|
||||
|
||||
//
|
||||
// We keep a linked list of these for the source files we process
|
||||
|
@ -1583,8 +1593,8 @@ ProcessArgs (
|
|||
}
|
||||
|
||||
strcpy (NewList->Str, Argv[1]);
|
||||
if (NewList->Str[strlen (NewList->Str) - 1] != '\\') {
|
||||
strcat (NewList->Str, "\\");
|
||||
if (NewList->Str[strlen (NewList->Str) - 1] != FILE_SEP_CHAR) {
|
||||
strcat (NewList->Str, FILE_SEP_STRING);
|
||||
}
|
||||
//
|
||||
// Add it to our linked list
|
||||
|
|
Loading…
Reference in New Issue