23c3d0a151
o show message to activate linuxulator to make extract.
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/sh
|
|
|
|
if kldstat -v | grep -q linuxelf; then exit; fi
|
|
|
|
cat <<_E_O_F_
|
|
This port requires linux emulator activated before extract distfile.
|
|
_E_O_F_
|
|
exit 1
|