From owner-svn-ports-head@freebsd.org Wed Mar 1 23:35:06 2017 Return-Path: Delivered-To: svn-ports-head@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 81AEBCF4E88; Wed, 1 Mar 2017 23:35:06 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E30A1C4; Wed, 1 Mar 2017 23:35:06 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v21NZ59u074301; Wed, 1 Mar 2017 23:35:05 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v21NZ5ne074299; Wed, 1 Mar 2017 23:35:05 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201703012335.v21NZ5ne074299@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Wed, 1 Mar 2017 23:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435205 - in head/lang: rust rust-nightly X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Mar 2017 23:35:06 -0000 Author: asomers (src committer) Date: Wed Mar 1 23:35:05 2017 New Revision: 435205 URL: https://svnweb.freebsd.org/changeset/ports/435205 Log: lang/rust*: Advise users to mount procfs Add a pkg-message to these ports advising users to mount procfs to see backtraces. Reviewed by: dumbbell, riggs Approved by: dumbbell (ports) Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D9838 Added: head/lang/rust/pkg-message (contents, props changed) Modified: head/lang/rust-nightly/Makefile Modified: head/lang/rust-nightly/Makefile ============================================================================== --- head/lang/rust-nightly/Makefile Wed Mar 1 23:16:16 2017 (r435204) +++ head/lang/rust-nightly/Makefile Wed Mar 1 23:35:05 2017 (r435205) @@ -23,6 +23,8 @@ GH_TUPLE= rust-lang:rust:282fa87 \ CONFLICTS_BUILD= rust # see FIXME in `pre-fetch` in lang/rust/Makefile CONFLICTS_INSTALL= rust +PKGMESSAGE= ${.CURDIR}/../rust/pkg-message + RUST_BOOTSTRAP_DIR= 2017-02-01 RUST_BOOTSTRAP_VERSION= beta Added: head/lang/rust/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/rust/pkg-message Wed Mar 1 23:35:05 2017 (r435205) @@ -0,0 +1,12 @@ +====================================================================== + +Printing Rust backtraces requires procfs(5) mounted on /proc . +If you have not already done so, please do the following: + + mount -t procfs proc /proc + +To make it permanent, you need the following lines in /etc/fstab: + + proc /proc procfs rw 0 0 + +======================================================================