From 2fb3bb898d8d530e41ddb63726c1b0631d71affe Mon Sep 17 00:00:00 2001 From: rettenbe Date: Tue, 24 Mar 2009 12:30:58 +0000 Subject: [PATCH] bugfix path building git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13562 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-si/tests/deploy-gosa-si.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.30.2