diff options
author | asomers <asomers@FreeBSD.org> | 2017-03-02 07:35:05 +0800 |
---|---|---|
committer | asomers <asomers@FreeBSD.org> | 2017-03-02 07:35:05 +0800 |
commit | 2ff4be56765a499f6caa5fddde0c5f140da0927e (patch) | |
tree | 839f2f1623b0448aaa115cc90efc6f96c22e5f6b /lang/rust | |
parent | aa59f36645df40c81b8c0bbbbe398edd16974160 (diff) | |
download | freebsd-ports-gnome-2ff4be56765a499f6caa5fddde0c5f140da0927e.tar.gz freebsd-ports-gnome-2ff4be56765a499f6caa5fddde0c5f140da0927e.tar.zst freebsd-ports-gnome-2ff4be56765a499f6caa5fddde0c5f140da0927e.zip |
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
Diffstat (limited to 'lang/rust')
-rw-r--r-- | lang/rust/pkg-message | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lang/rust/pkg-message b/lang/rust/pkg-message new file mode 100644 index 000000000000..2c45f1375f0b --- /dev/null +++ b/lang/rust/pkg-message @@ -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 + +====================================================================== |