Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Nov 2000 19:38:28 -0600
From:      Ade Lovett <ade@FreeBSD.org>
To:        "Jason R. Mastaler" <jason@mastaler.com>
Cc:        freebsd-ports@FreeBSD.ORG
Subject:   Re: testing new port: "make" chooses bad INSTALL value
Message-ID:  <20001116193828.S47823@FreeBSD.org>
In-Reply-To: <00111618272201.01571@nightshade>; from jason@mastaler.com on Thu, Nov 16, 2000 at 06:27:22PM -0700
References:  <00111618272201.01571@nightshade>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Nov 16, 2000 at 06:27:22PM -0700, Jason R. Mastaler wrote:
> I'm testing out a new port and am having trouble with the installation
> stage (make install).  The problem is that when "make" runs the
> "configure" script before compilation, a bad value for INSTALL is
> chosen ("../" instead of "/usr/bin/install") and the result is
> failure.  I should note that it is only subdirectories that have this
> problem (i.e, libmad below is a subdirectory), the top-level directory
> doesn't.

Gotta love those GNU tools..

In addition to any other patching you're doing to the top-level
configure script, look for the following 4 lines somewhere at
the bottom of the script:

	case "$ac_given_INSTALL" in
	[/$]*) INSTALL="$ac_given_INSTALL" ;;
	*) INSTALL="$ac_dots$ac_given_INSTALL" ;;
	esac

and nuke 'em -- after that, you'll be fine.

See x11-fm/gnomemc/files/patch-aa for one of the many examples of
this in the tree.

-aDe

-- 
Ade Lovett, Austin, TX.			ade@FreeBSD.org
FreeBSD: The Power to Serve		http://www.FreeBSD.org/


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001116193828.S47823>