aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/package/builddeb
diff options
context:
space:
mode:
authorMarcin Mielniczuk <marmistrz.dev@gmail.com>2016-07-12 21:42:35 +0200
committerMichal Marek <mmarek@suse.com>2016-07-26 23:12:08 +0200
commit4c586062b275dcddc18f521ac092cf0f600a36de (patch)
tree4c3ea0fe09a2622ead4911a934d99abbbe314705 /scripts/package/builddeb
parentbuilddeb: fix file permissions before packaging (diff)
downloadlinux-dev-4c586062b275dcddc18f521ac092cf0f600a36de.tar.xz
linux-dev-4c586062b275dcddc18f521ac092cf0f600a36de.zip
Fix the Debian packaging script on systems with no codename
When calling `make deb-pkg` on a system with no codename (for example Arch Linux), lsb_release sometimes outputs `n/a` as the codename. This breaks dpkg-parsechangelog, which can't process the changelog correctly. Signed-off-by: Marcin Mielniczuk <marmistrz.dev@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts/package/builddeb')
-rwxr-xr-xscripts/package/builddeb3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 116ef00c0b82..510add6d050c 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -240,7 +240,8 @@ maintainer="$name <$email>"
# Try to determine distribution
if [ -n "$KDEB_CHANGELOG_DIST" ]; then
distribution=$KDEB_CHANGELOG_DIST
-elif distribution=$(lsb_release -cs 2>/dev/null) && [ -n "$distribution" ]; then
+# In some cases lsb_release returns the codename as n/a, which breaks dpkg-parsechangelog
+elif distribution=$(lsb_release -cs 2>/dev/null) && [ -n "$distribution" ] && [ "$distribution" != "n/a" ]; then
: # nothing to do in this case
else
distribution="unstable"