* ruby.c (open_load_file): FILE_ALT_SEPARATOR and EXEEXT are
  config.status variables, not available in config.h.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-10-12 08:24:36 +00:00
Родитель 2e5fffa7cf
Коммит 21f1b89b9d
1 изменённых файлов: 2 добавлений и 2 удалений

4
ruby.c
Просмотреть файл

@ -1890,9 +1890,9 @@ open_load_file(VALUE fname_v, int *xflag)
#endif
MODE_TO_LOAD;
#if defined DOSISH || defined __CYGWIN__
# define isdirsep(x) ((x) == '/' || (x) == FILE_ALT_SEPARATOR)
# define isdirsep(x) ((x) == '/' || (x) == '\\')
{
static const char exeext[] = EXEEXT;
static const char exeext[] = ".exe";
enum {extlen = sizeof(exeext)-1};
if (flen > extlen && !isdirsep(fname[flen-extlen-1]) &&
STRNCASECMP(fname+flen-extlen, exeext, extlen) == 0) {