Index: ossp-pkg/shiela/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/shiela/ChangeLog,v' 2>/dev/null --- ChangeLog 2002/08/19 19:10:37 1.10 +++ ChangeLog 2002/12/21 09:20:27 1.11 @@ -9,6 +9,13 @@ ChangeLog + Changes between 0.9.2 and 0.9.3 (19-Aug-2002 to 21-Dec-2002): + + *) Fix the "invalid file specification `' for access + control" issue by using Cwd::realpath to resolve the absolute path + instead of calling `pwd`. + [Ralf S. Engelschall] + Changes between 0.9.1 and 0.9.2 (10-Feb-2001 to 19-Aug-2002): *) Switched to the OSSP devtool build environment Index: ossp-pkg/shiela/VERSION RCS File: /v/ossp/cvs/ossp-pkg/shiela/VERSION,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/shiela/VERSION,v' 2>/dev/null --- VERSION 2002/08/19 19:10:37 1.4 +++ VERSION 2002/12/21 09:20:27 1.5 @@ -2,5 +2,5 @@ VERSION -- Version Information for OSSP shiela (syntax: Text) [automatically generated and maintained by GNU shtool] - This is OSSP shiela, Version 0.9.2 (19-Aug-2002) + This is OSSP shiela, Version 0.9.3 (21-Dec-2002) Index: ossp-pkg/shiela/shiela-install.pod RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela-install.pod,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela-install.pod,v' 2>/dev/null --- shiela-install.pod 2002/08/19 19:10:38 1.5 +++ shiela-install.pod 2002/12/21 09:20:27 1.6 @@ -32,7 +32,7 @@ =head1 VERSION -B 0.9.2 (19-Aug-2002) +B 0.9.3 (21-Dec-2002) =head1 DESCRIPTION Index: ossp-pkg/shiela/shiela-install.sh RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela-install.sh,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela-install.sh,v' 2>/dev/null --- shiela-install.sh 2002/08/19 19:10:38 1.6 +++ shiela-install.sh 2002/12/21 09:20:27 1.7 @@ -25,7 +25,7 @@ ## shiela-install: Shiela repository install program (syntax: Bourne-Shell) ## -version="0.9.2 (19-Aug-2002)" +version="0.9.3 (21-Dec-2002)" prefix="@prefix@" bindir="@bindir@" Index: ossp-pkg/shiela/shiela.pl RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v rcsdiff -q -kk '-r1.16' '-r1.17' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela.pl,v' 2>/dev/null --- shiela.pl 2002/08/19 19:10:38 1.16 +++ shiela.pl 2002/12/21 09:20:27 1.17 @@ -25,7 +25,7 @@ ## shiela: Shiela control program (syntax: Perl) ## -my $version = '0.9.2 (19-Aug-2002)'; +my $version = '0.9.3 (21-Dec-2002)'; require 5.005; @@ -34,6 +34,7 @@ use IO::Handle; # shipped with Perl since 5.003 use IPC::Open2; # shipped with Perl since 5.003 use Data::Dumper; # shipped with Perl since 5.005 +use Cwd; # shipped with Perl since 5.003 # DEBUGGING $Data::Dumper::Purity = 1; @@ -983,8 +984,7 @@ # strip absolute prefix $cvsdir =~ s|^$RT->{cvsroot}/?||; - my $cvsdirphysical = `cd $RT->{cvsroot} && pwd`; - $cvsdirphysical =~ s|\n$||s; + my $cvsdirphysical = Cwd::realpath($RT->{cvsroot}); $cvsdir =~ s|^$cvsdirphysical/?||; # provide access control Index: ossp-pkg/shiela/shiela.pod RCS File: /v/ossp/cvs/ossp-pkg/shiela/shiela.pod,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/shiela/shiela.pod,v' 2>/dev/null --- shiela.pod 2002/08/19 19:10:38 1.5 +++ shiela.pod 2002/12/21 09:20:28 1.6 @@ -32,7 +32,7 @@ =head1 VERSION -B 0.9.2 (19-Aug-2002) +B 0.9.3 (21-Dec-2002) =head1 DESCRIPTION