From 616a2b0c7b386e144f166bc9deebf18f6a947c88 Mon Sep 17 00:00:00 2001 From: Balint Reczey Date: Wed, 18 Jan 2017 13:38:50 +0100 Subject: [PATCH] Always use /bin/sh shell in the build Closes: #817971 --- debian/rules | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index f170a74a..59f37d50 100755 --- a/debian/rules +++ b/debian/rules @@ -21,7 +21,18 @@ DEB_DESTDIR=$(CURDIR)/debian/tmp include /usr/share/cdbs/1/class/autotools.mk # Adds extra options when calling the configure script: -DEB_CONFIGURE_EXTRA_FLAGS := --disable-shared --without-libcrack --mandir=/usr/share/man --with-libpam --enable-shadowgrp --enable-man --disable-account-tools-setuid --with-group-name-max-length=32 --without-acl --without-attr --without-tcb +DEB_CONFIGURE_EXTRA_FLAGS := --disable-shared \ + --without-libcrack \ + --mandir=/usr/share/man \ + --with-libpam \ + --enable-shadowgrp \ + --enable-man \ + --disable-account-tools-setuid \ + --with-group-name-max-length=32 \ + --without-acl \ + --without-attr \ + --without-tcb \ + SHELL=/bin/sh ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) DEB_CONFIGURE_EXTRA_FLAGS += --host=$(DEB_HOST_GNU_TYPE) endif