Fix lintian obsolete-relation-form-in-source

This commit is contained in:
Aron Xu 2018-05-17 17:45:00 +08:00
parent ca6afab339
commit 9c54b3eb48
2 changed files with 3 additions and 3 deletions

2
debian/control vendored
View File

@ -24,7 +24,7 @@ Depends: dkms (>> 2.2.1.0),
lsb-release, lsb-release,
${misc:Depends} ${misc:Depends}
Suggests: spl (>= ${source:Upstream-Version}), Suggests: spl (>= ${source:Upstream-Version}),
linux-libc-dev (< 4.16) linux-libc-dev (<< 4.16)
Conflicts: spl (<< 0.7.9~) Conflicts: spl (<< 0.7.9~)
Provides: spl-modules Provides: spl-modules
Description: Solaris Porting Layer kernel modules for Linux Description: Solaris Porting Layer kernel modules for Linux

4
debian/rules vendored
View File

@ -22,7 +22,7 @@ pmodules = $(PACKAGE)-modules-$(non_epoch_version)
dh $@ --with dkms,autoreconf --parallel dh $@ --with dkms,autoreconf --parallel
override_dh_auto_configure: override_dh_auto_configure:
sed "s/@LINUX_COMPAT@/linux-libc-dev \(< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control
@# Embed the downstream version in the module. @# Embed the downstream version in the module.
@sed \ @sed \
@ -61,7 +61,7 @@ override_dh_dkms:
override_dh_auto_clean: override_dh_auto_clean:
dh_auto_clean dh_auto_clean
@if test -e META.orig; then mv META.orig META; fi @if test -e META.orig; then mv META.orig META; fi
sed "s/@LINUX_COMPAT@/linux-libc-dev \(< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control sed "s/@LINUX_COMPAT@/linux-libc-dev \(<< $(shell debian/get_next.sh)\)/" debian/control.in > debian/control
# ------------ # ------------