From owner-svn-ports-head@FreeBSD.ORG Tue Oct 22 21:16:06 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E5A00195; Tue, 22 Oct 2013 21:16:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mx.critical.ch (mx.critical.ch [IPv6:2001:1620:f05::1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 571DD295F; Tue, 22 Oct 2013 21:16:06 +0000 (UTC) Received: from beaver.home.critical.ch (77-59-132-3.dclient.hispeed.ch [77.59.132.3]) (authenticated bits=0) by mx.critical.ch (8.14.7/8.14.7/critical-1.0) with ESMTP id r9MLFxu0035948; Tue, 22 Oct 2013 23:15:59 +0200 (CEST) (envelope-from ehaupt@FreeBSD.org) Date: Tue, 22 Oct 2013 23:15:59 +0200 From: Emanuel Haupt To: William Grzybowski Subject: Re: svn commit: r331318 - head/archivers/amigadepacker Message-Id: <20131022231559.a3760c8d2a725cd2d0ae63aa@FreeBSD.org> In-Reply-To: References: <201310222044.r9MKioq5038715@svn.freebsd.org> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.19; amd64-portbld-freebsd9.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , Emanuel Haupt , ports-committers X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Oct 2013 21:16:07 -0000 William Grzybowski wrote: > On Tue, Oct 22, 2013 at 6:44 PM, Emanuel Haupt > wrote: > > Author: ehaupt > > Date: Tue Oct 22 20:44:50 2013 > > New Revision: 331318 > > URL: http://svnweb.freebsd.org/changeset/ports/331318 > > > > Log: > > Support staging > > > > Modified: > > head/archivers/amigadepacker/Makefile > > > > Modified: head/archivers/amigadepacker/Makefile > > ============================================================================== > > --- head/archivers/amigadepacker/Makefile Tue Oct 22 20:38:29 > > 2013 (r331317) +++ > > head/archivers/amigadepacker/Makefile Tue Oct 22 20:44:50 > > 2013 (r331318) @@ -12,22 +12,20 @@ COMMENT= Tool for > > depacking some compres > > > > LICENSE= GPLv2 > > > > -NO_STAGE= yes > > HAS_CONFIGURE= yes > > USE_BZIP2= yes > > USE_CSTD= gnu89 > > > > -CONFIGURE_ARGS+= --prefix=${PREFIX} > > +CONFIGURE_ARGS+= --prefix=${STAGEDIR}${PREFIX} > > Someone correct me if I'm wrong but I think --prefix should stay as > is, otherwise it may link using stagedir and not work after install. > make DESTDIR is used to install within stagedir. You're right. I've just fixed it. Emanuel