From owner-svn-ports-all@FreeBSD.ORG Sun Dec 30 17:09:37 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEE0F313; Sun, 30 Dec 2012 17:09:37 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ia0-f172.google.com (mail-ia0-f172.google.com [209.85.210.172]) by mx1.freebsd.org (Postfix) with ESMTP id 778A58FC08; Sun, 30 Dec 2012 17:09:37 +0000 (UTC) Received: by mail-ia0-f172.google.com with SMTP id z13so10138683iaz.3 for ; Sun, 30 Dec 2012 09:09:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=cyEvq/QAPz93OyU+CHmeebo+aPavTJXbMJAlpW+noCA=; b=sAVLpG/sNSe+Au8MEh28YpxOS683N6KKrkaMeaOc+vaZckKvzo+TnC6FcECuhDPV6B +Akf7VzJJPlXrVWiDNFcipratMo/p3mUnmehqBTGz+57wr5m4u+D755XoY34bkWjGsx0 7j2N0O2KykZNVHlXcJjCq17gW0VlDoRMZ0wbIJSJ6pKVSTBiPXMds5NqoFoR3oxundEn cu6mrIir0+ymCHoSgK2NAD+2vrZJw6LYYgTm5RCCyENeu30jP+KGNK3cyChigUUJqyD3 GEDcTmtf9HPAbaWjQVZCd5lSaybsUaw1ck30/crgmYOCWrS1eOyoxiSLSfOaocsGuoxo HGqA== Received: by 10.50.153.194 with SMTP id vi2mr34859107igb.15.1356887371133; Sun, 30 Dec 2012 09:09:31 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.64.65.132 with HTTP; Sun, 30 Dec 2012 09:09:00 -0800 (PST) In-Reply-To: <201212301212.qBUCCW7B097698@svn.freebsd.org> References: <201212301212.qBUCCW7B097698@svn.freebsd.org> From: Chris Rees Date: Sun, 30 Dec 2012 17:09:00 +0000 X-Google-Sender-Auth: DFbMikXzy02IDeKfQkcYprewc80 Message-ID: Subject: Re: svn commit: r309663 - head/x11-toolkits/qt33 To: Beat Gaetzi Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, "ports-committers@freebsd.org" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 17:09:38 -0000 On 30 December 2012 12:12, Beat Gaetzi wrote: > Author: beat > Date: Sun Dec 30 12:12:31 2012 > New Revision: 309663 > URL: http://svnweb.freebsd.org/changeset/ports/309663 > > Log: > - Silence a warning when PREFIX does not exist like on the INDEX builder. > > Discussed with: bapt > > Modified: > head/x11-toolkits/qt33/Makefile > > Modified: head/x11-toolkits/qt33/Makefile > ============================================================================== > --- head/x11-toolkits/qt33/Makefile Sun Dec 30 12:03:51 2012 (r309662) > +++ head/x11-toolkits/qt33/Makefile Sun Dec 30 12:12:31 2012 (r309663) > @@ -77,7 +77,9 @@ PACKAGE_COOKIE= ${WRKDIR}/.package_done. > > .include > > +.if exists(${PREFIX}) > PREFIX_REAL!= /bin/realpath ${PREFIX} > +.endif ${PREFIX_REAL} appears to be only used in post-patch target; unless anyone objects I'm going to change the != into a =$() inside the target to avoid the fork during make index once I've finished testing. http://www.bayofrum.net/~crees/patches/qt33-INDEX-slow.diff Chris