From owner-freebsd-questions@FreeBSD.ORG Mon Jun 13 17:57:34 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78EFB16A41C; Mon, 13 Jun 2005 17:57:34 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from viefep18-int.chello.at (viefep18-int.chello.at [213.46.255.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DBCC43D53; Mon, 13 Jun 2005 17:57:33 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from [80.98.207.149] by viefep18-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050613175730.MKJK12975.viefep18-int.chello.at@[80.98.207.149]>; Mon, 13 Jun 2005 19:57:30 +0200 Message-ID: <42ADC908.6060505@t-hosting.hu> Date: Mon, 13 Jun 2005 19:57:28 +0200 From: =?UTF-8?B?S8O2dmVzZMOhbiBHw6Fib3I=?= User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dan Nelson References: <42ADC155.10304@t-hosting.hu> <20050613174248.GA85674@dan.emsphone.com> In-Reply-To: <20050613174248.GA85674@dan.emsphone.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Makefile question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jun 2005 17:57:34 -0000 Oh, I didn't mean that. Both the configure script and the application Makefile are working. What I mean is, that the configure script doesn't let me to specify --libdir, --bindir, ... Thus a lot of files would be installed directly under the default ${PREFIX}, which is /usr/local, that's why I would like to specify a separated subdirectory under the ${PREFIX}, but my CONFIGURE_ARGS=--prefix=${PREFIX}/appname doesn't work, but I don't know why. I thought it is syntactically correct, but it had the same effect as is I wrote only ${PREFIX} instead of ${PREFIX}/appname. Cheers, Gábor Kövesdán Dan Nelson wrote: >Maybe the problem is not the configure script but the Makefile install >target. Check to see what the generated Makefile looks like. It's >possible that it uses gnumake syntax, in which case you may need >USE_GMAKE=yes in the port Makefile. Or, if it doesn't install many >files, you can just provide a do-install: target in your port Makefile >and install the files yourself. > > >