From owner-freebsd-questions@FreeBSD.ORG Sat Dec 15 07:30:22 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5A2C2D0; Sat, 15 Dec 2012 07:30:22 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward2h.mail.yandex.net (forward2h.mail.yandex.net [IPv6:2a02:6b8:0:f05::2]) by mx1.freebsd.org (Postfix) with ESMTP id 257888FC13; Sat, 15 Dec 2012 07:30:21 +0000 (UTC) Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward2h.mail.yandex.net (Yandex) with ESMTP id 266DB7012B7; Sat, 15 Dec 2012 11:30:20 +0400 (MSK) Received: from smtp3h.mail.yandex.net (localhost [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id CEDE81B400D3; Sat, 15 Dec 2012 11:30:19 +0400 (MSK) Received: from 93.91.11.53.tel.ru (93.91.11.53.tel.ru [93.91.11.53]) by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id UJ0iQ049-UJ0uadYu; Sat, 15 Dec 2012 11:30:19 +0400 Message-ID: <50CC270B.8010000@passap.ru> Date: Sat, 15 Dec 2012 11:30:19 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Eugen Konkov Subject: Re: make do not work in 10-Current References: <416216005.20121215002442@yandex.ru> In-Reply-To: <416216005.20121215002442@yandex.ru> Content-Type: multipart/mixed; boundary="------------070005040306080707010607" Cc: Ryan Steinmetz , FreeBSD Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Dec 2012 07:30:22 -0000 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--