Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
MariaDB and MySQL Packaging Team
mariadb-5.5
Commits
a55f1fd5
Commit
a55f1fd5
authored
Aug 29, 2014
by
Otto Kekäläinen
Browse files
Fix for non-versioned symbols in kFreeBSD
parent
b716bc22
Changes
1
Hide whitespace changes
Inline
Side-by-side
debian/rules
View file @
a55f1fd5
...
@@ -92,6 +92,13 @@ override_dh_auto_configure:
...
@@ -92,6 +92,13 @@ override_dh_auto_configure:
@echo "RULES.$@"
@echo "RULES.$@"
dh_testdir
dh_testdir
# Versioned symbols are only available on Linux.
# Remove symbols file on kFreeBSD builds so that
# dpkg-gensymbols will not fail the build.
ifneq (,$(filter $(ARCH), kfreebsd-i386 kfreebsd-amd64))
rm debian/libmariadbclient18.symbols
endif
# Rename shared libraries SONAME and filenames
# Rename shared libraries SONAME and filenames
# libmysqlclient18.so > libmariadbclient18.so etc
# libmysqlclient18.so > libmariadbclient18.so etc
sed -i 's/mysqlclient/mariadbclient/g' client/CMakeLists.txt tests/CMakeLists.txt scripts/CMakeLists.txt
sed -i 's/mysqlclient/mariadbclient/g' client/CMakeLists.txt tests/CMakeLists.txt scripts/CMakeLists.txt
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment