diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-10-29 23:49:02 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-10-30 00:01:33 +0100 |
commit | 4b3dc6665dfb4a88c3068e769418866993c12b37 (patch) | |
tree | 0ca97992ab680c8ba0a8f04967efe54a0665e4b8 /solenv | |
parent | 97c62ed88419f7288ce1b365474c65038253608e (diff) |
install-gdb-printers: don't use "ure-link"
... which is a symlink and creating it as a directory when "-c" is
specified is a bad idea.
Change-Id: Idceef60373699c89eb494b212bec84748606f532
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/install-gdb-printers | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/solenv/bin/install-gdb-printers b/solenv/bin/install-gdb-printers index af7639084ed2..1b0ff1c5a2f6 100755 --- a/solenv/bin/install-gdb-printers +++ b/solenv/bin/install-gdb-printers @@ -160,16 +160,16 @@ fi if [[ -n "${MERGELIBS}" ]]; then make_autoload merged program libmergedlo."$DYLIB" merge svl tl basegfx `[[ ${MERGELIBS} == "ALL" ]] && echo sw` if [[ ${MERGELIBS} == "ALL" ]]; then - make_autoload urelibs ure-link/lib liburelibs."$DYLIB" merge cppu sal + make_autoload urelibs ure/lib liburelibs."$DYLIB" merge cppu sal else - make_autoload cppu ure-link/lib libuno_cppu."$DYLIB".3 - make_autoload sal ure-link/lib libuno_sal."$DYLIB".3 + make_autoload cppu ure/lib libuno_cppu."$DYLIB".3 + make_autoload sal ure/lib libuno_sal."$DYLIB".3 make_autoload sw program libswlo."$DYLIB" fi else make_autoload basegfx program libbasegfxlo."$DYLIB" - make_autoload cppu ure-link/lib libuno_cppu."$DYLIB".3 - make_autoload sal ure-link/lib libuno_sal."$DYLIB".3 + make_autoload cppu ure/lib libuno_cppu."$DYLIB".3 + make_autoload sal ure/lib libuno_sal."$DYLIB".3 make_autoload svl program libsvllo."$DYLIB" make_autoload sw program libswlo."$DYLIB" make_autoload tl program libtllo."$DYLIB" |