summaryrefslogtreecommitdiff
path: root/editors/staroffice52
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2002-08-06 00:08:49 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2002-08-06 00:08:49 +0000
commit9985c67abdcb4cdd7f56192d41786d8f1f867a42 (patch)
treeae98ca17a581b900d6e7d9bb5c8cf60391c6dc54 /editors/staroffice52
parentAdd mydns, the MySQL DNS server. (diff)
Add note requiring /proc to be mounted along with /compat/linux/proc.
Approved by: maintainer (mbr)
Notes
Notes: svn path=/head/; revision=64081
Diffstat (limited to 'editors/staroffice52')
-rw-r--r--editors/staroffice52/Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/editors/staroffice52/Makefile b/editors/staroffice52/Makefile
index df47e8250c6b..a12d38ae90ed 100644
--- a/editors/staroffice52/Makefile
+++ b/editors/staroffice52/Makefile
@@ -49,20 +49,23 @@ ADABAS_DIST= soa-5_2-ga-bin-linux-en.bin
.include <bsd.port.pre.mk>
SIZE!= /bin/df -k . | ${TAIL} -n 1 | ${AWK} '{print $$4}'
-LINPROCFS!= /sbin/mount | /usr/bin/grep linprocfs | ${AWK} '{print $1}'
+LINPROCFS!= /sbin/mount | /usr/bin/grep ^linprocfs | ${AWK} '{print $1}'
+PROCFS!= /sbin/mount | /usr/bin/grep ^procfs | ${AWK} '{print $1}'
pre-fetch:
-.if ${LINPROCFS}
+.if ${LINPROCFS} && ${PROCFS}
@${ECHO}
- @${ECHO} Check if linprocfs is running: YES
+ @${ECHO} Check if procfs and linprocfs is running: YES
.else
@${ECHO} -----------------------------------------------------------
@${ECHO}
- @${ECHO} Staroffice setup needs a running linprocfs, which is not
- @${ECHO} activated on your system. Please read the linprocfs\(5\)
- @${ECHO} manpage and add the following line to /etc/fstab:
+ @${ECHO} Staroffice setup needs a running procfs and linprocfs,
+ @${ECHO} which may not be activated on your system. Please read the
+ @${ECHO} procfs\(5\) and linprocfs\(5\) manpages and ensure the
+ @${ECHO} the following lines are in /etc/fstab:
@${ECHO}
@${ECHO} linproc /compat/linux/proc linprocfs rw 0 0
+ @${ECHO} proc /proc procfs rw 0 0
@${ECHO}
@${ECHO} -----------------------------------------------------------
@${FALSE}