Re: [R-pkg-devel] 'configure' exists but is not executable

2019-08-26 Thread Max Turgeon
I'm glad to hear it worked. As for CRAN, I would assume they take care of permissions on their end somehow, I can't say for sure. But a certain number of packages use configure scripts (e.g. RcppArmadillo and RcppParallel), so if anything special is required, I would look at their respective Git

Re: [R-pkg-devel] 'configure' exists but is not executable

2019-08-26 Thread Sebastian Ankargren
Dear Max, That fixes the issue completely on Travis — thanks. However, it worries me a little that I might need something similar for the build on CRAN? Or should I simply just assume that this is an issue specific to Travis? /Sebastian On 26 Aug 2019, at 16:09, Max Turgeon mailto:max.turg...

Re: [R-pkg-devel] 'configure' exists but is not executable

2019-08-26 Thread Max Turgeon
Hi Sebastian, Have you tried adding a line in your `.travis.yml` file that changes the permissions for `configure`? Something like this: before_install: - chmod +x configure Max Turgeon Assistant Professor Department of Statistics Department of Computer Science University of Manitoba maxtu