[elinks-dev] [PATCH 1/2] Use autoconf to detect LD reliably.

2010-12-13 Thread Sergey Kvachonok
Target LD is different from ld when cross-compiling, change it together with CC. Signed-off-by: Sergey Kvachonok --- Makefile.config.in |1 + configure.in |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Makefile.config.in b/Makefile.config.in index c463868

[elinks-dev] [PATCH 2/2] Replace AC_CHECK_FILE with test -f in configure.in.

2010-12-13 Thread Sergey Kvachonok
AC_CHECK_FILE runs target executable and dies when cross-compiling. It's unnecessary when checking for files in build environment, simple runtime check will do. Signed-off-by: Sergey Kvachonok --- configure.in |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --