From a66186cc0dd49a1800c56688e5347fc39abb8c3a Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 13 Feb 2001 14:42:06 -0500 Subject: [svn-r3406] Purpose: Fixlet Description: FIxed the hack for the INSTALL macro. It was checking the "whole" path to the install-sh script instead of if it was just a relative path with install-sh at the end. Solution: Changed the test to match any relative path with install-sh at the end. This assumes that the install-sh is the one we supply to them (an assumption it was making before, really). Platforms tested: Gondolin, Linux --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index cbfe143..0ac15db 100755 --- a/configure +++ b/configure @@ -1688,7 +1688,7 @@ exec 5>>./config.log case "$INSTALL" in - ../bin/install-sh) + ..*install-sh) INSTALL='\${top_srcdir}'/bin/install-sh ;; esac diff --git a/configure.in b/configure.in index 31e3a84..fec2e4a 100644 --- a/configure.in +++ b/configure.in @@ -238,7 +238,7 @@ AM_PROG_LIBTOOL dnl Fix up the INSTALL macro if it's a relative path. We want the dnl full-path to the binary instead. case "$INSTALL" in - ../bin/install-sh) + ..*install-sh) INSTALL='\${top_srcdir}'/bin/install-sh ;; esac -- cgit v0.12