From: Fabian Grünbichler Date: Wed, 19 Apr 2017 08:29:15 +0000 (+0200) Subject: actually apply config patches for real X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=992be4079c77d75fcfd4005d2f9c3a2d6a257219;p=lvm.git actually apply config patches for real --- diff --git a/Makefile b/Makefile index 903fc85..d220523 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,10 @@ ${DEBS}: ${LVMSRC} tar xf ${LVMSRC} echo "git clone git://git.proxmox.com/git/lvm.git\\ngit checkout ${GITVERSION}" > ${LVMDIR}/debian/SOURCE for pkg in $(LVMPKGLIST) $(DMPKGLIST); do echo "debian/SOURCE" >> $(LVMDIR)/debian/$${pkg}.docs; done - cp -v patchdir/*.patch ${LVMDIR}/debian/patches - cat patchdir/series >> ${LVMDIR}/debian/patches/series + # Note: the patches in debian/patches are not used by the build process, so apply them manually here! + cd ${LVMDIR}; ln -s ../patchdir patches + cd ${LVMDIR}; quilt push -a + cd ${LVMDIR}; rm -rf .pc ./patches mv ${LVMDIR}/debian/changelog ${LVMDIR}/debian/changelog.org cat changelog.Debian ${LVMDIR}/debian/changelog.org > ${LVMDIR}/debian/changelog cd ${LVMDIR}; dpkg-buildpackage -b -uc -us