diff options
author | Andras Timar <atimar@suse.com> | 2011-09-20 08:53:36 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2011-09-20 08:53:36 +0200 |
commit | 9899ed3dcf1d2317760eb8f5d01d83c00c2e93d9 (patch) | |
tree | 8ddf2e1dcf2367fff999a5300cb7cb737fcfb90f /solenv/bin | |
parent | 37bf43f4907bd6ce96c732f192a92ebcbc78c95a (diff) |
there is no special iso.res case any more
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/linkoo | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/solenv/bin/linkoo b/solenv/bin/linkoo index 107553f8ba5f..212cb568908e 100755 --- a/solenv/bin/linkoo +++ b/solenv/bin/linkoo @@ -332,23 +332,6 @@ sub link_gdb_py() print "\n"; } -sub link_iso_res() -{ - print "Special iso.res case: "; - my $ooo_res="$OOO_INSTALL/" . $brand_program_dir . "/resource/ooo".$LIBVER.$LANG.".res"; - my $star_res="$OOO_INSTALL/" . $brand_program_dir . "/resource/iso".$LIBVER.$LANG.".res"; - if (-l $ooo_res && -l $star_res) { - if ($dry_run) { - print "link $ooo_res to $star_res"; - } else { - unlink ($star_res); - symlink ($ooo_res, $star_res); - print "clobbered"; - } - } - print "\n"; -} - sub link_pagein_files() { print "pagein case:"; @@ -404,7 +387,6 @@ my $installed_files = build_installed_list ($OOO_INSTALL); scan_and_link_files ($OOO_BUILD, $installed_files, $TARGET); link_gdb_py(); -link_iso_res(); link_pagein_files(); if (!-f "$OOO_INSTALL/" . $brand_program_dir . "/ooenv") { |