From 16253cff43bf4865be01fb6f0b03cc7eeb1ece1b Mon Sep 17 00:00:00 2001 From: Turbo Fredriksson Date: Tue, 23 Apr 2013 16:45:45 -0700 Subject: [PATCH] Add --bump=0 to alien Preserve the release field when creating Debian packages. The --keep-version option was not used because it results in a failure when the git '_' syntax is used for the release. The '_' is a valid character for RPM packages but not for DEBs. Signed-off-by: Brian Behlendorf Signed-off-by: Turbo Fredriksson Issue zfsonlinux/zfs#1402 Issue zfsonlinux/zfs#928 --- config/deb.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/deb.am b/config/deb.am index 5efbd9d36f..a2bad0260d 100644 --- a/config/deb.am +++ b/config/deb.am @@ -34,7 +34,7 @@ if CONFIG_KERNEL version=${VERSION}-${RELEASE}; \ arch=`$(RPM) -qp $${name}-kmod-$${version}.src.rpm --qf %{arch} | tail -1`; \ pkg1=kmod-$${name}*$${version}.$${arch}.rpm; \ - fakeroot $(ALIEN) --scripts --to-deb $$pkg1; \ + fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \ $(RM) $$pkg1 endif @@ -44,7 +44,7 @@ if CONFIG_USER version=${VERSION}-${RELEASE}; \ arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \ pkg1=$${name}-$${version}.$${arch}.rpm; \ - fakeroot $(ALIEN) --scripts --to-deb $$pkg1; \ + fakeroot $(ALIEN) --bump=0 --scripts --to-deb $$pkg1; \ $(RM) $$pkg1 endif