Date: Sat, 15 Dec 2012 11:30:19 +0400 From: Boris Samorodov <bsam@passap.ru> To: Eugen Konkov <kes-kes@yandex.ru> Cc: Ryan Steinmetz <zi@FreeBSD.org>, FreeBSD Questions <freebsd-questions@freebsd.org> Subject: Re: make do not work in 10-Current Message-ID: <50CC270B.8010000@passap.ru> In-Reply-To: <416216005.20121215002442@yandex.ru> References: <416216005.20121215002442@yandex.ru>
next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format. --------------070005040306080707010607 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (maintainer is CCed) 15.12.2012 02:24, Eugen Konkov пишет: > # make > "Makefile", line 166: Malformed conditional (${PORT_OPTIONS:MFIREBIRD} && empty(${PORT_OPTIONS:MEXPERIMENTAL}) > "Makefile", line 168: if-less endif > make: fatal errors encountered -- cannot continue Please, try the attached patch (missing ")" at the end of the quoted Makefile line). -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve --------------070005040306080707010607 Content-Type: text/x-diff; name="freeradius2.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="freeradius2.diff" Index: /usr/ports/net/freeradius2/Makefile =================================================================== --- /usr/ports/net/freeradius2/Makefile (revision 308706) +++ /usr/ports/net/freeradius2/Makefile (working copy) @@ -171,7 +171,7 @@ .endif # Firebird module is still experimental -.if ${PORT_OPTIONS:MFIREBIRD} && empty(${PORT_OPTIONS:MEXPERIMENTAL} +.if ${PORT_OPTIONS:MFIREBIRD} && empty(${PORT_OPTIONS:MEXPERIMENTAL}) EXPM= yes .endif --------------070005040306080707010607--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?50CC270B.8010000>