diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2015-10-19 15:54:20 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2015-10-19 15:54:20 +0300 |
commit | 804439ca6d7dbc5a042dd3ed759548d247a6c3e4 (patch) | |
tree | 24e229c3b87274973e9ef727066bfd7654d79b69 | |
parent | 76d018a8af27653c40229684724c185830b1c482 (diff) | |
download | libxml2-804439ca6d7dbc5a042dd3ed759548d247a6c3e4.tar.gz |
Fix 32-bit build
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index bd2dcba..475db13 100755 --- a/debian/rules +++ b/debian/rules @@ -51,10 +51,8 @@ doconfigure-main: CONFIGURE_FLAGS += --without-python --with-icu doconfigure-python%: CONFIGURE_FLAGS += --with-python=/usr/bin/$* doconfigure-udeb: CONFIGURE_FLAGS += --without-history --with-tree --with-output --without-python --without-icu -# For dyson we need 32-bit library, but we don't have 32-bit liblzma -doconfigure-32: CONFIGURE_FLAGS += --without-python --libdir=/usr/lib32 --without-lzma +doconfigure-32: CONFIGURE_FLAGS += --libdir=/usr/lib32 --without-python --without-lzma --without-history --with-tree --with-output --without-icu --cache-file=/dev/null doconfigure-32: CC += -m32 -doconfigure-32: CACHE_FILE = /dev/null override_dh_auto_build: $(TARGETS:%=dobuild-%) |