From 7a06551f277ad34063538c938c24ce364cc5658d Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Mon, 5 Jan 2015 22:27:03 -0800 Subject: [PATCH] debian: Set SHELL environment variable when running configure The configure script uses this to find the shell binary. If not set, it will try to build i386 when on amd64 systems. Signed-off-by: Jordan Justen --- debian/rules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/rules b/debian/rules index e49bde33f8..fef4c21857 100755 --- a/debian/rules +++ b/debian/rules @@ -23,7 +23,9 @@ SYSTEM_LLVM = --llvm-root=/usr %: dh $@ --parallel +# Note: SHELL is not set by dash, but the configure script wants to use it override_dh_auto_configure: + SHELL=/bin/sh \ ./configure \ $(COMMON_FLAGS) \ # TODO