mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
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 '<commit>_<hash>' syntax is used for the release. The '_' is a valid character for RPM packages but not for DEBs. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Turbo Fredriksson <turbo@bayour.com> Issue zfsonlinux/zfs#1402 Issue zfsonlinux/zfs#928
This commit is contained in:
parent
2c21370746
commit
16253cff43
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user