From owner-freebsd-ports@freebsd.org Fri Feb 3 17:03:20 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4DC3CCEAE3 for ; Fri, 3 Feb 2017 17:03:20 +0000 (UTC) (envelope-from killing@multiplay.co.uk) Received: from mail-wj0-x233.google.com (mail-wj0-x233.google.com [IPv6:2a00:1450:400c:c01::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5AB8DD10 for ; Fri, 3 Feb 2017 17:03:20 +0000 (UTC) (envelope-from killing@multiplay.co.uk) Received: by mail-wj0-x233.google.com with SMTP id n2so2787232wjq.3 for ; Fri, 03 Feb 2017 09:03:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=multiplay-co-uk.20150623.gappssmtp.com; s=20150623; h=to:from:subject:message-id:date:user-agent:mime-version; bh=zhZjLvUIAJWjIy3YTe8hTYyPzMKaJoUoW8w0YNtW3Jc=; b=WFVc+kAyNVnzGOd8JZfgfqAVqLvrpmXpdAj0jW6cEkV1mjjelF5sDQdHjKNveSXBMH tYUCFAaoUKWTWHgKvyybEYvhaBAeW+RqEAQCOg8tRzJfJtQ6r4eA/GUPam3lxm6imTm5 E15uoIhlEv705bNdXUckr5AeWkKt4GENng2u9gN8HCJ9ibpz70h+WNUZ3DiOvCag4mjQ lUH1V/Ea0w7Tn2BmKpApSutsNvSZ2exHPvoPc8KuC54MfB5c1l59N/ssaHY+ub1aMfp6 3s2Lx3VlXHB/8EstYOnOzO5bDh9Oi9ykJcwBALVBAD0jX3aS6Ec27RVBeu2TinhBzQxt +1qA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version; bh=zhZjLvUIAJWjIy3YTe8hTYyPzMKaJoUoW8w0YNtW3Jc=; b=mevfMkX7AwRjm5WghdT1Cte0wPeiHHnrX6c63AxcZdHqTaNRItv4e8Dro02rVRXupn b4RbAQ9IsjgNYPc6VWUMWGNifEWDCAjfJHEeQzCcUyddwIno6lf6FiI4csxQLiQ6E+TF M0LEP//zoXf7UXnzS1xG4yR/uoNffu+xyT8ubQ0BvhjkgqobbJYoxtG8fo1PkENDLaOh IcTW03yhU85xz0/tRJUpKY644AjgdCvlVwwk5HuY24mZq5JUXFbdHF59JtweIowZ1aAJ M6vErKlLjWJ5ZXj/83O4D2lrC9oUDcvk7vcudTfcBfGMgT8FXmOhWrjtS+8R5l27lbxL AF5Q== X-Gm-Message-State: AIkVDXIHVSBX3J0lsqDrQV/SRmzl7LyMEusy2lo/UltSdFNt8ZXahl6jc1OtJYla7CuzQT6q X-Received: by 10.223.177.195 with SMTP id r3mr13776171wra.147.1486141397921; Fri, 03 Feb 2017 09:03:17 -0800 (PST) Received: from [10.10.1.58] ([185.97.61.26]) by smtp.gmail.com with ESMTPSA id 191sm3899048wmo.21.2017.02.03.09.03.16 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 03 Feb 2017 09:03:17 -0800 (PST) To: "freebsd-ports@freebsd.org" From: Steven Hartland Subject: Check for unsupported system version is broken Message-ID: Date: Fri, 3 Feb 2017 17:03:16 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2017 17:03:20 -0000 The check added to check and output an unsupported system version is broken and instead of output the error, the error errors ;-) [00:00:01] ====>> Calculating ports order and dependencies make: "/usr/ports/Mk/bsd.port.mk" line 1164: warning: duplicate script for target "show-unsupported-system-error" ignored make: "/usr/ports/Mk/bsd.port.mk" line 1170: warning: using previous script for "show-unsupported-system-error" defined here The change was added here: https://svnweb.freebsd.org/ports?view=revision&revision=431746 It's nice to warn the user, but ATM it just looks like someone broke something. Regards Steve