From owner-freebsd-questions@FreeBSD.ORG Mon Jun 13 17:24:49 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 70A8816A41C; Mon, 13 Jun 2005 17:24:49 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from viefep19-int.chello.at (viefep11-int.chello.at [213.46.255.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0932A43D48; Mon, 13 Jun 2005 17:24:44 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from [80.98.207.149] by viefep19-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20050613172440.JIJR10913.viefep19-int.chello.at@[80.98.207.149]>; Mon, 13 Jun 2005 19:24:40 +0200 Message-ID: <42ADC155.10304@t-hosting.hu> Date: Mon, 13 Jun 2005 19:24:37 +0200 From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: Subject: 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:24:49 -0000 Hello, I'm trying to make a new port, but the software I'm porting has an awkward configure script, and when I run ./configure --prefix=/usr/local then every file goes to directly to /usr/local not to /usr/local/bin, /usr/local/etc, ... Thus I would like to install it into /usr/local/appname. I wrote to my Makefile: GNU_CONFIGURE= YES CONFIGURE_ARGS= --prefix=${PREFIX}/appname But the situation is the same. Everything goes directly to /usr/local, as if I wrote just --prefix=${PREFIX}. What can I do now? Cheers, Gábor Kövesdán