diff options
Diffstat (limited to 'solenv/bin/install-gdb-printers')
-rwxr-xr-x | solenv/bin/install-gdb-printers | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/solenv/bin/install-gdb-printers b/solenv/bin/install-gdb-printers index 4125fe5209c0..4c2aa393c78c 100755 --- a/solenv/bin/install-gdb-printers +++ b/solenv/bin/install-gdb-printers @@ -156,25 +156,24 @@ if [[ ${DESTDIR}${pythondir} != ${GDBDIR} ]]; then cp -pr "${GDBDIR}/libreoffice" "${DESTDIR}${pythondir}" fi +# keep in sync with solenv/Package_gdb.mk if [[ -n "${MERGELIBS}" ]]; then - make_autoload merged program libmergedlo."$DYLIB" merge svl tl basegfx writerfilter `[[ ${MERGELIBS} == "ALL" ]] && echo sw` + 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 else make_autoload cppu ure-link/lib libuno_cppu."$DYLIB".3 make_autoload sal ure-link/lib libuno_sal."$DYLIB".3 make_autoload sw program libswlo."$DYLIB" - make_autoload basegfx program libbasegfxlo."$DYLIB" - make_autoload writerfilter program libwriterfilterlo."$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 svl program libsvllo."$DYLIB" - make_autoload tl program libtllo."$DYLIB" make_autoload sw program libswlo."$DYLIB" - make_autoload basegfx program libbasegfxlo."$DYLIB" - make_autoload writerfilter program libwriterfilterlo."$DYLIB" + make_autoload tl program libtllo."$DYLIB" fi +make_autoload writerfilter program libwriterfilterlo."$DYLIB" # vim:set shiftwidth=4 softtabstop=4 expandtab: |