diff options
| author | Thomas Preud'homme <robotux@celest.fr> | 2013-02-13 17:58:14 +0100 |
|---|---|---|
| committer | Thomas Preud'homme <robotux@celest.fr> | 2013-02-13 17:58:58 +0100 |
| commit | af4b27f0fd7d1ee247bbd1a330dfbff9ed16bcae (patch) | |
| tree | 87d93892fdf1c06bd11169fc845a16073b165be1 | |
| parent | f6cfaa6d2591b8931f8fde9aebf7822202b78810 (diff) | |
| download | tinycc-af4b27f0fd7d1ee247bbd1a330dfbff9ed16bcae.tar.gz tinycc-af4b27f0fd7d1ee247bbd1a330dfbff9ed16bcae.tar.bz2 | |
Fix previous commit
Fix commit f6cfaa6d2591b8931f8fde9aebf7822202b78810
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
