Commit cfec45db authored by Tuukka Pasanen's avatar Tuukka Pasanen Committed by Daniel Black

MDEV-33837: Fix unwanted-path-too-specific specific warning

There is not-installed static libraries which only
have x86-64 path so they will be installed in other
architectures like ARM. Fix them replacing with '*'
char

 * W: mariadb source: unwanted-path-too-specific
parent 263064c0
......@@ -10,14 +10,14 @@ usr/bin/mariadb-embedded # Shipping the embedded server in distro packaging does
usr/bin/mysql_config # Debian packaging has mysql_config as symlink to mariadb_config
usr/bin/mysql_embedded # Symlink to mariadb-embedded which is intentionally not included
usr/bin/sst_dump # Use the one from rocksdb-tools package
usr/lib/aarch64-linux-gnu/libdbbc.a # ColumnStore header file
usr/lib/aarch64-linux-gnu/libidbboot.a # ColumnStore header file
usr/lib/aarch64-linux-gnu/libprocessor.a # ColumnStore header file
usr/lib/aarch64-linux-gnu/libwe_xml.a # ColumnStore header file
usr/lib/x86_64-linux-gnu/libdbbc.a # ColumnStore header file
usr/lib/x86_64-linux-gnu/libidbboot.a # ColumnStore header file
usr/lib/x86_64-linux-gnu/libprocessor.a # ColumnStore header file
usr/lib/x86_64-linux-gnu/libwe_xml.a # ColumnStore header file
usr/lib/*/libdbbc.a # ColumnStore static library
usr/lib/*/libidbboot.a # ColumnStore static library
usr/lib/*/libprocessor.a # ColumnStore static library
usr/lib/*/libwe_xml.a # ColumnStore static library
usr/lib/*/libdbbc.a # ColumnStore static library
usr/lib/*/libidbboot.a # ColumnStore static library
usr/lib/*/libprocessor.a # ColumnStore static library
usr/lib/*/libwe_xml.a # ColumnStore static library
usr/bin/test-connect-t
usr/bin/uca-dump
usr/bin/wsrep_sst_backup
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment