I'm creating a Debian package using DebHelper, under the latest stable version of Debian.
The "debian/control" file comprises these lines:
Depends:
${shlibs:Depends},
${misc:Depends}
The dependencies are thus automatically set in the created package. However, the version required of libstdc++ is too strict. The package requires libstdc++6 (>= 4.9) and I want it to be set as libstdc++6 (>= 4.8).
For this purpose and at the reading of this page and this page, I edited the "debian/rules" file which now looks like:
#!/usr/bin/make -f
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@
override_dh_makeshlibs:
dh_makeshlibs -V 'libstdc++6 (>= 4.8)'
The last two lines however did not make the job. Has anyone already did this kind of customization on a Debian package?
Thanks