You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Andrea (Jira)" <ji...@apache.org> on 2022/05/27 17:57:00 UTC

[jira] [Created] (ARROW-16679) configure fails if CDPATH is not null

Andrea created ARROW-16679:
------------------------------

             Summary: configure fails if CDPATH is not null
                 Key: ARROW-16679
                 URL: https://issues.apache.org/jira/browse/ARROW-16679
             Project: Apache Arrow
          Issue Type: Improvement
          Components: R
    Affects Versions: 7.0.0
            Reporter: Andrea


at line 179 in the _configure_ file inside the R package _arrow_7.0.0.tar.gx_

_BUNDLED_LIBS=`cd $LIB_DIR && ls *.a`_

if _CDPATH_ is not null (in the env) _BUNDLED_DIR_ will contains also the _$LIB_DIR_ folder path, and the installation will fail during _ld_

_.../ld.gold: fatal error: .../arrow/libarrow/arrow-7.0.0/lib: pread failed: Is a directory_

 

a better option wuold be something like:

cd $LIB_DIR

BUNDLED_LIBS=`ls *.a`

 

ver. 8.0.0 is affected the same way

 

have a good day



--
This message was sent by Atlassian Jira
(v8.20.7#820007)