Date: Sun, 09 Mar 2014 17:30:27 -0400 From: Naram Qashat <cyberbotx@cyberbotx.com> To: Gerald Pfeifer <gerald@pfeifer.com>, ports-committers@freebsd.org Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org Subject: Re: svn commit: r347678 - in head: . audio audio/libmtp multimedia multimedia/libmtp Message-ID: <531CDD73.1030702@cyberbotx.com> In-Reply-To: <alpine.LSU.2.11.1403092221080.7314@tuna.site> References: <201403091814.s29IEoKg084520@svn.freebsd.org> <531CBDEA.7010204@freebsd.org> <alpine.LSU.2.11.1403092030560.7314@tuna.site> <alpine.LSU.2.11.1403092221080.7314@tuna.site>
next in thread | previous in thread | raw e-mail | index | archive | help
On 03/09/14 17:23, Gerald Pfeifer wrote: > On Sun, 9 Mar 2014, Gerald Pfeifer wrote: >> My tests now still fails with >> >> --- describe.devel --- >> make[5]: "/shscratch/tmp/gerald/4portmgr/devel/mingw32-binutils/Makefile" >> line 47: Malformed conditional ((defined(PREFIX) && ${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} && ${PREFIX} != "/usr")) >> make[5]: Fatal errors encountered -- cannot continue===> devel/mingw32-binutils failed >> *** [describe.devel] Error code 1 >> >> but that seems unrelated. > > Am I missing something, or should the following be applied? > > Okay? > > Gerald > > Index: devel/mingw32-binutils/Makefile > =================================================================== > --- devel/mingw32-binutils/Makefile (revision 347685) > +++ devel/mingw32-binutils/Makefile (working copy) > @@ -44,7 +44,9 @@ > add-plist-post: > @${ECHO_CMD} "@unexec ${RMDIR} -p %D/${PKGNAMEPREFIX:S/-$//}/info 2> /dev/null || true" >> ${TMPPLIST} > @${ECHO_CMD} "@unexec ${RMDIR} -p %D/${PKGNAMEPREFIX:S/-$//} 2> /dev/null || true" >> ${TMPPLIST} > -.if (defined(PREFIX) && ${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} && ${PREFIX} != "/usr") > +.if (defined(PREFIX) && defined(LOCALBASE) && defined(LINUXBASE) \ > + && ${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} \ > + && ${PREFIX} != "/usr") > @${ECHO_CMD} "@unexec ${RMDIR} %D 2> /dev/null || true" >> ${TMPPLIST} > .else > @${DO_NADA} > I'm fine with the patch, odd error though. Thanks, Naram Qashat
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?531CDD73.1030702>