configure: don't output CONFIG_LDDIR when build_cross = "yes"
commitb5d25654d8316601f0bb109069a9f00b404c5673
authorseyko <seyko2@gmail.com>
Sat, 21 Mar 2015 04:16:33 +0000 (21 07:16 +0300)
committerseyko <seyko2@gmail.com>
Sat, 21 Mar 2015 04:16:33 +0000 (21 07:16 +0300)
tree688006d41d4225059f9ff6c656abd8fbaedb06db
parent63d068d3f208ca4c5762cf87066d8b43e8fc5823
configure: don't output CONFIG_LDDIR when build_cross = "yes"

This fixes i386-tcc on CentOS 7. After patch
    [root@centos7 tinycc]# ./i386-tcc -vv
    tcc version 0.9.26 (i386, Linux)
    install: /usr/local/lib/tcc
    crt:
      /usr/lib
    libraries:
      /usr/lib
      /lib
      /usr/local/lib

Before patch:
    [root@centos7 tinycc]# ./i386-tcc -vv
    tcc version 0.9.26 (i386, Linux)
    install: /usr/local/lib/tcc
    crt:
      /usr/lib64
    libraries:
      /usr/lib64
      /lib64
      /usr/local/lib64
configure