You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to install this module I'm getting error when it is compiling subversion:
configure: error: expected an absolute directory name for --prefix: .../..
I believe this may be because I compiled PERL (v5.24) with option "--prefix=/app/myapp/local" to install in a separate directory. My Perl Config shows:
Maybe add in your Builder.pm (sub _default_configure_args) script to also include $Config{installprefix} and check for absolute path since that is required in the SVN configure.
The text was updated successfully, but these errors were encountered:
When I try to install this module I'm getting error when it is compiling subversion:
configure: error: expected an absolute directory name for --prefix: .../..
I believe this may be because I compiled PERL (v5.24) with option "--prefix=/app/myapp/local" to install in a separate directory. My Perl Config shows:
$ perl -M"Config qw(config_sh)" -E 'say foreach grep(/prefix=/,split(/\n/,config_sh()))'
config_arg2='-Dprefix=/app/myapp/local/perl-5.24.0'
config_args='-Duserelocatableinc -Dprefix=/app/myapp/local/perl-5.24.0 -de'
installprefix='/app/myapp/local/perl-5.24.0'
prefix='.../..'
siteprefix='.../..'
usevendorprefix='undef'
vendorprefix=''
Maybe add in your Builder.pm (sub _default_configure_args) script to also include $Config{installprefix} and check for absolute path since that is required in the SVN configure.
The text was updated successfully, but these errors were encountered: