From af4b27f0fd7d1ee247bbd1a330dfbff9ed16bcae Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Wed, 13 Feb 2013 17:58:14 +0100 Subject: [PATCH] Fix previous commit Fix commit f6cfaa6d2591b8931f8fde9aebf7822202b78810 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index db991cac..761c20c4 100755 --- a/configure +++ b/configure @@ -264,7 +264,7 @@ if test -z "$cross_prefix" ; then if test -f "/usr/lib64" ; then lddir="lib64" elif test -z "$tcc_crtprefix" ; then # check if system is multiarch - if ! test -f $sysroot/usr/lib/crti.o -o test -L $sysroot/usr/lib/crti.o ; then + if test ! -f $sysroot/usr/lib/crti.o -o -L $sysroot/usr/lib/crti.o ; then use_multiarch="yes" fi fi -- 2.11.4.GIT