From: rettenbe Date: Tue, 24 Mar 2009 12:30:58 +0000 (+0000) Subject: bugfix path building X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2fb3bb898d8d530e41ddb63726c1b0631d71affe;p=gosa.git bugfix path building git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13562 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/tests/deploy-gosa-si.pl b/gosa-si/tests/deploy-gosa-si.pl index f824b5db8..87a285782 100755 --- a/gosa-si/tests/deploy-gosa-si.pl +++ b/gosa-si/tests/deploy-gosa-si.pl @@ -72,8 +72,8 @@ while( my($new_file, $file_name) = each %copies ) { print STDERR "$del_cmd\n"; system($del_cmd); - - my $ln_cmd = "ln -s ".$gosa_path.$file_name." $new_file"; + my $abs_file = File::Spec->catfile($gosa_path, $file_name); + my $ln_cmd = "ln -s $abs_file $new_file"; print STDERR "$ln_cmd\n"; system($ln_cmd);