From e2bf29b7801357c1ad28c2948a3f88c655dd722a Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sun, 27 Apr 2014 10:36:21 +0400 Subject: [PATCH] Fix machdep .lo files path in configure (SPARC, IA-64) * configure.ac (machdep): Remove "src/" path prefix for .lo files (sparc_netbsd_mach_dep, sparc_mach_dep, ia64_save_regs_in_stack). --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 6e6ea7c..081baa3 100644 --- a/configure.ac +++ b/configure.ac @@ -578,21 +578,21 @@ case "$host" in dnl performance under Irix. ;; sparc-*-netbsd*) - machdep="src/sparc_netbsd_mach_dep.lo" + machdep="sparc_netbsd_mach_dep.lo" ;; sparc*-*-linux* | sparc*-*-openbsd* | sparc64-*-freebsd* | sparc64-*-netbsd*) - machdep="src/sparc_mach_dep.lo" + machdep="sparc_mach_dep.lo" ;; sparc-sun-solaris2.3) - machdep="src/sparc_mach_dep.lo" + machdep="sparc_mach_dep.lo" AC_DEFINE(SUNOS53_SHARED_LIB, 1, [Define to work around a Solaris 5.3 bug (see dyn_load.c).]) ;; sparc*-sun-solaris2*) - machdep="src/sparc_mach_dep.lo" + machdep="sparc_mach_dep.lo" ;; ia64-*-*) - machdep="src/ia64_save_regs_in_stack.lo" + machdep="ia64_save_regs_in_stack.lo" ;; esac AC_MSG_RESULT($machdep) -- 2.7.4