obs-transition-table icon indicating copy to clipboard operation
obs-transition-table copied to clipboard

OUT_OF_TREE installs duplicate locale

Open eribertomota opened this issue 3 years ago • 1 comments

Dear @exeldro,

When building obs-transition-table on Debian, I am using:

        dh_auto_configure -- -DBUILD_OUT_OF_TREE=On \
                             -DLIB_OUT_DIR=lib/${DEB_TARGET_MULTIARCH}/obs-plugins \
                             -DDATA_OUT_DIR=share/obs/obs-plugins/${PLUGIN_NAME}

and I am getting the following result:

└── usr
    ├── data
    │   └── obs-plugins
    │       └── transition-table
    │           └── locale
    │               ├── en-US.ini
    │               ├── es-ES.ini
    │               ├── nl-NL.ini
    │               └── pt-BR.ini
    ├── lib
    │   └── x86_64-linux-gnu
    │       └── obs-plugins
    │           └── transition-table.so
    ├── obs-plugins
    │   └── 64bit
    │       └── transition-table.so
    └── share
         └── obs
            └── obs-plugins
                └── transition-table
                    └── locale
                        ├── en-US.ini
                        ├── es-ES.ini
                        ├── nl-NL.ini
                        └── pt-BR.ini

Thanks!

eribertomota avatar Oct 09 '22 02:10 eribertomota

I am also seeing usr/obs-plugins/64bit/transition-table.so

eribertomota avatar Oct 09 '22 02:10 eribertomota

Solved: it is needed to pass -DLINUX_PORTABLE=Off to cmake command. Closing. Thanks for your efforts.

eribertomota avatar Feb 21 '23 05:02 eribertomota