]> andersk Git - gssapi-openssh.git/commitdiff
o Remove unneeded LD_LIBRARY_PATH changes from setup script.
authorcphillip <cphillip>
Fri, 23 Apr 2004 02:24:44 +0000 (02:24 +0000)
committercphillip <cphillip>
Fri, 23 Apr 2004 02:24:44 +0000 (02:24 +0000)
setup/setup-openssh.pl

index 94482b6347114a7427bddc974a03df8069f94852..69a82b03958fbaa55742d3762f70ed014cabad8f 100644 (file)
@@ -35,18 +35,6 @@ use Getopt::Long;
 use Cwd;
 use Cwd 'abs_path';
 
-#
-# modify the ld library path for when we call ssh executables
-#
-
-$oldldpath = $ENV{LD_LIBRARY_PATH};
-$newldpath = "$gpath/lib";
-if (length($oldldpath) > 0)
-{
-    $newldpath .= ":$oldldpath";
-}
-$ENV{LD_LIBRARY_PATH} = "$newldpath";
-
 #
 # i'm including this because other perl scripts in the gpt setup directories
 # do so
@@ -1083,7 +1071,7 @@ sub action
 
     debug1("$command\n");
 
-    my $result = system("LD_LIBRARY_PATH=\"$gpath/lib:\$LD_LIBRARY_PATH\"; $command >/dev/null 2>&1");
+    my $result = system("$command >/dev/null 2>&1");
 
     if (($result or $?) and $command !~ m!patch!)
     {
This page took 0.047778 seconds and 5 git commands to generate.