summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2009-12-18 15:56:13 +0100
committersb <sb@openoffice.org>2009-12-18 15:56:13 +0100
commit650479fbc7d0306e6e74ad175a67b11eeadd5744 (patch)
tree813c25169be40b8159e7871299253e50df5aaeb1 /solenv
parentsb118: adaptions of using CppUnit 1.12.1 for wntgcci platform and for --enabl... (diff)
downloadcore-650479fbc7d0306e6e74ad175a67b11eeadd5744.tar.gz
core-650479fbc7d0306e6e74ad175a67b11eeadd5744.zip
sb118: build cppunit as RPATH=NONE (as it will only be used while building, not go into installation sets)
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/macosx-change-install-names.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/solenv/bin/macosx-change-install-names.pl b/solenv/bin/macosx-change-install-names.pl
index 5e7064631ec0..91b82514c7bc 100644
--- a/solenv/bin/macosx-change-install-names.pl
+++ b/solenv/bin/macosx-change-install-names.pl
@@ -46,10 +46,12 @@ sub action($$$)
'shl/URELIB/URELIB' => '@loader_path',
'shl/OOO/URELIB' => '@loader_path/../ure-link/lib',
'shl/OOO/OOO' => '@loader_path',
- 'shl/OXT/URELIB' => '@executable_path/urelibs');
+ 'shl/OXT/URELIB' => '@executable_path/urelibs',
+ 'shl/NONE/URELIB' => '@__VIA_LIBRARY_PATH__',
+ 'shl/NONE/NONE' => '@__VIA_LIBRARY_PATH__');
my ($type, $loc1, $loc2) = @_;
my $act = $action{"$type/$loc1/$loc2"};
- die "illegal combination $type/$loc/$2" unless defined $act;
+ die "illegal combination $type/$loc1/$loc2" unless defined $act;
return $act;
}