6cbdc9ab5d
an alternative linux emulation base of emulators/linux_base
9 lines
216 B
Bash
9 lines
216 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then
|
|
if [ -f ${PKG_PREFIX}/etc/redhat-release ]; then
|
|
echo "linux_base-debian can't be installed into the redhat base"
|
|
exit 1
|
|
fi
|
|
fi
|