From: Turbo Fredriksson Date: Tue, 23 Apr 2013 23:45:45 +0000 (-0700) Subject: Add --bump=0 to alien X-Git-Tag: zfs-0.8.0-rc1~152^2~283 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16253cff43bf4865be01fb6f0b03cc7eeb1ece1b;p=zfs 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 --- diff --git a/config/deb.am b/config/deb.am index 5efbd9d36..a2bad0260 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