From owner-freebsd-ports@FreeBSD.ORG Thu Jan 12 22:42:04 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85B24106566B for ; Thu, 12 Jan 2012 22:42:04 +0000 (UTC) (envelope-from freebsd-ports@herveybayaustralia.com.au) Received: from mail.unitedinsong.com.au (mail.unitedinsong.com.au [150.101.178.33]) by mx1.freebsd.org (Postfix) with ESMTP id 35F598FC0C for ; Thu, 12 Jan 2012 22:42:03 +0000 (UTC) Received: from laptop1.herveybayaustralia.com.au (laptop1.herveybayaustralia.com.au [192.168.0.179]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.unitedinsong.com.au (Postfix) with ESMTPSA id 74B645C26 for ; Fri, 13 Jan 2012 08:54:33 +1000 (EST) Message-ID: <4F0F60CB.6090601@herveybayaustralia.com.au> Date: Fri, 13 Jan 2012 08:38:03 +1000 From: Da Rock User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:7.0.1) Gecko/20111109 Thunderbird/7.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <4F0E395B.6020201@herveybayaustralia.com.au> <4F0E4D20.405@missouri.edu> <4F0E5809.4020700@herveybayaustralia.com.au> <4F0E5A92.2050607@missouri.edu> <4F0E5E1E.20904@herveybayaustralia.com.au> <4F0E60B6.4040904@missouri.edu> <20120112062705.GA63861@dormouse.experts-exchange.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: unassociated shell command X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jan 2012 22:42:04 -0000 On 01/13/12 07:30, Chris Rees wrote: > On 12 January 2012 06:27, Jason Helfman wrote: >> On Wed, Jan 11, 2012 at 10:25:26PM -0600, Stephen Montgomery-Smith thus >> spake: >>> On 01/11/2012 10:14 PM, Da Rock wrote: >>>>>>>> I'm still very new to this, but I'm almost complete on my first >>>>>>>> port. I >>>>>>>> do have an unusual error which crops up from time to time and I'm >>>>>>>> usually able to fudge along and clear it- but this last little bit >>>>>>>> won't >>>>>>>> clear! >>>>>>>> >>>>>>>> The particular lines in question are as follows: >>>>>>>> >>>>>>>> post-extract: >>>>>>>> [snip] >>>>>>>> .if defined(NOPORTDOCS) >>>>>>>> @if [ -d ${WRKDIR}/usr/share/doc ]; then \ >>>>>>>> ${RM} -rf ${WRKDIR}/usr/share/doc; \ >>>>>>>> fi >>>>>>>> PLIST_SUB+="@comment " >>>>>>>> .else >>>>>>>> PLIST_SUB+= PORTDOCS="" >>>>>>>> .endif >>>>>>>> >>>>>>>> and I get the following error make -DNOPORTDOCS install: >>>>>>>> "Makefile", line 59: Unassociated shell command "@if [ -d >>>>>>>> ${WRKDIR}/usr/share/doc ]; then ${RM} -rf ${WRKDIR}/usr/share/doc; >>>>>>>> fi" >>>>>>>> make: fatal errors encountered -- cannot continue >>>>>>>> >>>>>>>> What am I possibly missing? No googling helps, and I've tried many >>>>>>>> different tricks that have worked in the past as ${DIRRM}, ${RM}, >>>>>>>> individual directory/file removal, etc. >>>>>>>> >>>>>>>> The indentation is exactly as in the Makefile. >> >> Is the indentation whitespace, or using tabs? It should be tabs, in my >> experience. >> > Quite right, it should be tabs! > > Also, no, you shouldn't (can't) set Make variables inside a target, as > covered before. > > However... instead of > > .if defined(NOPORTDOCS) > PLIST_SUB etc etc > > stuff, just remove all the PORTDOCS lines from pkg-plist, and use the > magic variable PORTDOCS: > > PORTDOCS= * > > :) I must be a little slow this morning... I don't get it. How does that work? I would like to point out also that the docs are 30/70 nss and pam related respectively. So if I install without pam then the pam docs are not installed.