summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Shadura <andrewsh@debian.org>2016-04-29 12:14:08 +0200
committerAndrej Shadura <andrewsh@debian.org>2019-07-26 14:55:01 -0300
commit50b0b802017e84172ec9412b536f4cc3fdd089f4 (patch)
treec06dfb6dbc554d52a870c0536f6925320b8db668
parent1c88972067cf49c3cbf4c3e69779b51608dafac9 (diff)
[PATCH] Disable bitwidth guessing.archive/debian/1.9.0+git20190515+996bead-1
Gbp-Pq: Name 0002-disable-bitwidth-guessing.patch
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 39b5fbe..ccbafe8 100755
--- a/configure
+++ b/configure
@@ -22,8 +22,8 @@ opt_xattrdb=false
opt_profile=false
opt_passwd_fallback='""'
-compile_x86_32=-m32
-compile_x86_64=-m64
+compile_x86_32=
+compile_x86_64=
usage()
{
@@ -191,7 +191,7 @@ if [ -z "$opt_bits" ]; then
fi
case $opt_bits in
-64) opt_mark64=64;;
+64) opt_mark64=;;
32) opt_mark64=;;
*) echo >&2 "Unknown bit size $opt_bits (only 32 and 64 known)."
;;