diff mbox

deb-pkg: remove obsolete -isp option to dpkg-gencontrol

Message ID 1412530998-31193-1-git-send-email-asbjorn@asbjorn.biz (mailing list archive)
State New, archived
Headers show

Commit Message

Asbjørn Sloth Tønnesen Oct. 5, 2014, 5:43 p.m. UTC
The -isp option has been deprecated, after it became the default
behaviour back in 2006.

Since dpkg 1.17.11, dpkg-gencontrol emits a warning on -isp usage.

References: https://bugs.debian.org/215233
Signed-off-by: Asbjoern Sloth Toennesen <asbjorn@asbjorn.biz>
---
 scripts/package/builddeb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michal Marek Oct. 7, 2014, 8:56 a.m. UTC | #1
On 2014-10-05 19:43, Asbjoern Sloth Toennesen wrote:
> The -isp option has been deprecated, after it became the default
> behaviour back in 2006.
> 
> Since dpkg 1.17.11, dpkg-gencontrol emits a warning on -isp usage.
> 
> References: https://bugs.debian.org/215233
> Signed-off-by: Asbjoern Sloth Toennesen <asbjorn@asbjorn.biz>

Applied to kbuild.git#misc, thanks.

Michal

--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 35d5a58..1453a55 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -64,7 +64,7 @@  create_package() {
 	fi
 
 	# Create the package
-	dpkg-gencontrol -isp $forcearch -Vkernel:debarch="${debarch:-$(dpkg --print-architecture)}" -p$pname -P"$pdir"
+	dpkg-gencontrol $forcearch -Vkernel:debarch="${debarch:-$(dpkg --print-architecture)}" -p$pname -P"$pdir"
 	dpkg --build "$pdir" ..
 }