Changeset ab23dc in git for resources


Ignore:
Timestamp:
Jun 3, 2015, 6:53:33 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
6105f4f4166e278c2c1a880b1d135f4057777e11
Parents:
22c3f2c3748d3c6aa16cfcf2ab75e3fd23da838d
Message:
fix tr. #705: instead of being executable require existence of the file
File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/omFindExec.c

    r22c3f2 rab23dc  
    126126        strcat (tbuf, name);
    127127
    128         /* If we can execute the named file, then return it. */
    129         if (! access (tbuf, X_OK))
     128        /* If the named file exists, then return it. */
     129        if (! access (tbuf, F_OK))
    130130        {
    131131#ifdef WINNT
Note: See TracChangeset for help on using the changeset viewer.