I'm building a Debian package that depends on libmysqlcppconn7v5
. I'm building it on Ubuntu which has libmysqlcppconn7v5
1.1.9, however it is intended to be installed on Debian which has libmysqlcppconn7v5
1.1.7.
debian/control
contains following line:
Depends: ${shlibs:Depends}, ${misc:Depends}, libmysqlcppconn7v5 (>= 1.1.7)
When the package is built it still has dependency libmysqlcppconn7v5 (>= 1.1.9)
How can I force it to have a dependency on lower package version than I have installed when building the package?