Changeset 1854

Show
Ignore:
Timestamp:
01/05/07 07:49:05 (2 years ago)
Author:
karman
Message:

perltidy

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/swish-e/buildswishe.pl

    r1851 r1854  
    715715    $ENV{LD_RUN_PATH} ||= '.'; 
    716716 
    717     $ENV{LD_RUN_PATH} = join(':', grep { /./ } map { $seen{$_}++ ? '' : $_ } @path, $ENV{LD_RUN_PATH}); 
     717    $ENV{LD_RUN_PATH} = join(':', 
     718                             grep { /./ } map { $seen{$_}++ ? '' : $_ } @path, 
     719                             $ENV{LD_RUN_PATH}); 
    718720 
    719721    # unset LD_LIBRARY_PATH for this script, so that tests accurately reflect what we've linked 
     
    13861388        "LIBS='$libs'", 
    13871389 
    1388         #"LDFLAGS='-L$installdir/lib'", 
     1390        #"LDFLAGS='$ld_opts'", 
    13891391        #LDFLAGS seems to be ignored by MakeMaker 
    13901392        # and/or not supported under some versions. 
     
    13971399    my $arg = join ' ', @a; 
    13981400 
     1401    $ENV{SWISHLIBS}   = $libs; 
    13991402    $ENV{SWISHBINDIR} = "$installdir/bin"; 
    14001403 
     
    14111414    print "$cmd\n"; 
    14121415 
    1413     nice_exit() if system($cmd ); 
     1416    nice_exit() if system($cmd); 
    14141417    make(); 
    14151418    make_test(); 
     
    14291432 
    14301433    delete $ENV{PERL5LIB};    # just in case we have it somewhere else... 
    1431     my $inc = join ' ', 
    1432       "-I" 
    1433       . File::Spec->catfile($perllib, $vers, $arch) . "-I" 
    1434       . File::Spec->catfile($perllib, 'site_perl', $vers, $arch), 
     1434    my $inc = join ' ', "-I" . File::Spec->catfile($perllib, $vers, $arch), 
     1435      "-I" . File::Spec->catfile($perllib, 'site_perl', $vers, $arch), 
    14351436      "-I" . File::Spec->catfile($perllib, $arch); 
    14361437