diff options
author | trevor <trevor@FreeBSD.org> | 2005-01-14 07:42:56 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2005-01-14 07:42:56 +0800 |
commit | 9733c0271cddfac92cfa1c9f593d0f7b22bb2baa (patch) | |
tree | 537498cc544068124384ac35dba45ef0ff743e7a /emulators | |
parent | f987e727d514f345f43249ea90cca9ab5df09730 (diff) | |
download | freebsd-ports-gnome-9733c0271cddfac92cfa1c9f593d0f7b22bb2baa.tar.gz freebsd-ports-gnome-9733c0271cddfac92cfa1c9f593d0f7b22bb2baa.tar.zst freebsd-ports-gnome-9733c0271cddfac92cfa1c9f593d0f7b22bb2baa.zip |
In FreeBSD 4 and later there are no longer separate linuxaout and
linuxelf modules.
Diffstat (limited to 'emulators')
-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 |