I am on a Debian 10.4 system. I am trying to compile the shadow-4.5 package due to changes in the source code.
Here is my quilt procedure: (from https://wiki.debian.org/UsingQuilt)
$ apt-get source shadow/stable
$ export QUILT_PATCHES=debian/patches
$ export QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
$ quilt push -a
$ quilt new xxx_test_patch
$ quilt add <file_changed>
$ < here my source code modifications ... >
$ quilt refresh
$ quilt pop -a
And, finally build my package :
$ debuild -b -us -uc
My package compiles without problem but the binaries contained in the generated .deb files do not contain my modifications.
However, when I manually compile the binaries (with configure an make), the binaries generated in the src directory of my source tree do contain my changes.
I would like to generate the debian package (.deb) with just my modifications in addition using the tool recommended by debian "debuild".
I don't know if I forgot or did something wrong.
Thanks in advance