From: Richard Purdie Date: Sun, 12 Feb 2006 17:10:46 +0000 (+0000) Subject: Add DEBIAN_NOAUTONAME_ variable to disable debian.bbclass renaming for specific packages. X-Git-Tag: Release-2010-05/1~9453^2~2371^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef7b99ecfed9f4a3f5064bc0c945dda789e1a7d6;p=openembedded.git Add DEBIAN_NOAUTONAME_ variable to disable debian.bbclass renaming for specific packages. --- diff --git a/classes/debian.bbclass b/classes/debian.bbclass index d66c1fc763..63a126ca17 100644 --- a/classes/debian.bbclass +++ b/classes/debian.bbclass @@ -74,7 +74,7 @@ python debian_package_name_hook () { if soname_result: (pkgname, devname) = soname_result for pkg in packages.split(): - if (bb.data.getVar('PKG_' + pkg, d)): + if (bb.data.getVar('PKG_' + pkg, d) or bb.data.getVar('DEBIAN_NOAUTONAME_' + pkg, d)): continue if pkg == orig_pkg: newpkg = pkgname