on a multilib system lib32 is usually used for 32 bit libaries. since just specifying lib32 as libdir dosn't work on ./configure stage, we need to add it here Signed-off-by: Robert Förster <Dessa@xxxxxxxx> --- configure.ac | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index eaca506..77ef23f 100644 --- a/configure.ac +++ b/configure.ac @@ -42,9 +42,10 @@ NONE:NONE | NONE:/usr | /usr:*) esac ;; esac -# lib64 +# lib64 and lib32 case ${libdir} in *lib64) libdirname=lib64 ;; + *lib32) libdirname=lib32 ;; *) libdirname=lib esac AC_SUBST([libdirname]) -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html