~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/test-run.pl

  • Committer: Monty Taylor
  • Date: 2009-04-14 18:46:33 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414184633-l2w5xa7fzgg1h2pv
Append local @ld_library_paths, rather than the other way around.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1340
1340
    push(@ld_library_paths, $debug_libraries_path);
1341
1341
  }
1342
1342
 
1343
 
  $ENV{'LD_LIBRARY_PATH'}= join(":", @ld_library_paths,
 
1343
  $ENV{'LD_LIBRARY_PATH'}= join(":", 
1344
1344
                                $ENV{'LD_LIBRARY_PATH'} ?
1345
 
                                split(':', $ENV{'LD_LIBRARY_PATH'}) : ());
 
1345
                                split(':', $ENV{'LD_LIBRARY_PATH'}) : (),
 
1346
                                @ld_library_paths);
1346
1347
  mtr_debug("LD_LIBRARY_PATH: $ENV{'LD_LIBRARY_PATH'}");
1347
1348
 
1348
1349
  $ENV{'DYLD_LIBRARY_PATH'}= join(":", @ld_library_paths,