From owner-svn-ports-head@FreeBSD.ORG Tue Apr 22 09:20:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCE2BB3C; Tue, 22 Apr 2014 09:20:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 B9FEA1AAE; Tue, 22 Apr 2014 09:20:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3M9KuPf035074; Tue, 22 Apr 2014 09:20:56 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3M9KuXY035072; Tue, 22 Apr 2014 09:20:56 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201404220920.s3M9KuXY035072@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 22 Apr 2014 09:20:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351779 - head/shells/bash 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.17 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: Tue, 22 Apr 2014 09:20:56 -0000 Author: ehaupt Date: Tue Apr 22 09:20:56 2014 New Revision: 351779 URL: http://svnweb.freebsd.org/changeset/ports/351779 QAT: https://qat.redports.org/buildarchive/r351779/ Log: Add an install message about the fact that fdescfs has to be present. Discussed on: ports@, amd64@ Added: head/shells/bash/pkg-message (contents, props changed) Modified: head/shells/bash/Makefile Modified: head/shells/bash/Makefile ============================================================================== --- head/shells/bash/Makefile Tue Apr 22 09:18:55 2014 (r351778) +++ head/shells/bash/Makefile Tue Apr 22 09:20:56 2014 (r351779) @@ -4,7 +4,7 @@ PORTNAME= bash PATCHLEVEL= 11 PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= shells MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} Added: head/shells/bash/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/bash/pkg-message Tue Apr 22 09:20:56 2014 (r351779) @@ -0,0 +1,16 @@ +====================================================================== + +bash requires fdescfs(5) mounted on /dev/fd and procfs(5) mounted on +/proc. + +If you have not done it yet, please do the following: + + mount -t fdescfs fdesc /dev/fd + mount -t procfs proc /proc + +To make it permanent, you need the following lines in /etc/fstab: + + fdesc /dev/fd fdescfs rw 0 0 + proc /proc procfs rw 0 0 + +======================================================================