lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 1 Mar 2019 07:14:41 +0000 From: <yamada.masahiro@...ionext.com> To: <kacper@...odziej.it>, <michal.lkml@...kovi.net> CC: <linux-kbuild@...r.kernel.org>, <linux-kernel@...r.kernel.org> Subject: RE: [PATCH] kbuild: [bin]deb-pkg: add DPKG_FLAGS variable > -----Original Message----- > From: Kacper Kołodziej [mailto:kacper@...odziej.it] > Sent: Tuesday, February 05, 2019 9:38 PM > To: Yamada, Masahiro/山田 真弘 <yamada.masahiro@...ionext.com>; > michal.lkml@...kovi.net > Cc: linux-kbuild@...r.kernel.org; linux-kernel@...r.kernel.org; > kacper@...odziej.it > Subject: [PATCH] kbuild: [bin]deb-pkg: add DPKG_FLAGS variable > > DPKG_FLAGS variable lets user to add more flags to dpkg-buildpackage > command in deb-pkg and bindeb-pkg. > > Signed-off-by: Kacper Kołodziej <kacper@...odziej.it> > --- Applied to linux-kbuild. Thanks. > scripts/package/Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/scripts/package/Makefile b/scripts/package/Makefile > index 453fecee62f0..6963eacb323c 100644 > --- a/scripts/package/Makefile > +++ b/scripts/package/Makefile > @@ -72,11 +72,11 @@ deb-pkg: FORCE > $(call cmd,src_tar,$(KDEB_SOURCENAME)) > origversion=$$(dpkg-parsechangelog -SVersion |sed > 's/-[^-]*$$//');\ > mv > $(KDEB_SOURCENAME).tar.gz ../$(KDEB_SOURCENAME)_$${origversion}.orig.t > ar.gz > - +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) > -i.git -us -uc > + +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) > $(DPKG_FLAGS) -i.git -us -uc > > bindeb-pkg: FORCE > $(CONFIG_SHELL) $(srctree)/scripts/package/mkdebian > - +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) > -b -nc -uc > + +dpkg-buildpackage -r$(KBUILD_PKG_ROOTCMD) -a$$(cat debian/arch) > $(DPKG_FLAGS) -b -nc -uc > > intdeb-pkg: FORCE > +$(CONFIG_SHELL) $(srctree)/scripts/package/builddeb > -- > 2.20.1
Powered by blists - more mailing lists