>From c046322c93af6e05a488ed00154230d27664355e Mon Sep 17 00:00:00 2001 From: Peter Rosin Date: Sun, 8 Dec 2013 23:48:07 +0100 Subject: [PATCH] maint: fix out-of-tree autoreconf w/o manual rebootstrap build-aux/ltmain.in: Look for funclib.sh and options-parser in the same location ltmain.in is found. Signed-off-by: Peter Rosin --- build-aux/ltmain.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index fba05c1..0da8ad7 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -61,8 +61,8 @@ address@hidden@ # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. -. "build-aux/funclib.sh" -. "build-aux/options-parser" +. `echo "$0" |${SED-sed} 's|[^/]*$||'`"funclib.sh" +. `echo "$0" |${SED-sed} 's|[^/]*$||'`"options-parser" # Set a version string. scriptversion='(GNU @PACKAGE@) @VERSION@' -- 1.7.9