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
This commit is contained in:
Alan Somers 2017-03-01 23:35:05 +00:00
parent 67dab4a68a
commit fc869c8727
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=435205
2 changed files with 14 additions and 0 deletions

View file

@ -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

12
lang/rust/pkg-message Normal file
View file

@ -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
======================================================================