diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2005-01-13 23:42:56 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2005-01-13 23:42:56 +0000 |
commit | 73a8261dc834a1f9d6bbbd2190f90c9d4963129e (patch) | |
tree | 0f66a4e2cb50e9fcff3589a6c748d4fc3a90ef0e /emulators/linux_base/pkg-install | |
parent | New port: mail/pfqueue A console-based tool for handling postfix queues (diff) |
In FreeBSD 4 and later there are no longer separate linuxaout and
linuxelf modules.
Diffstat (limited to 'emulators/linux_base/pkg-install')
-rw-r--r-- | emulators/linux_base/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/linux_base/pkg-install b/emulators/linux_base/pkg-install index 5870edf05835..434e9c261578 100644 --- a/emulators/linux_base/pkg-install +++ b/emulators/linux_base/pkg-install @@ -3,7 +3,7 @@ case "$2" in PRE-INSTALL) - if [ -z "`kldstat -v | grep -E 'linux(aout|elf)'`" ]; then + if [ -z "`kldstat -v | grep linux`" ]; then echo 'Linux mode is not enabled.' echo 'Loading linux kernel module now...' if ! kldload linux; then |