Notes
-----
-If you're cross compiling you may need to send HAVE_FORK=yes or HAVE_FORK=no
-to the make command to avoid to automatic test.
+If you're cross compiling you may need to set the below knobs to avoid
+automatic tests.
+HAVE_FORK=yes | no
+OS=BSD | Linux
We try and detect how to restart ntp and ypbind, you can override this with
HAVE_INIT=no or force one of these values
# Setup OS specific variables
# Copyright 2008 Roy Marples <roy@marples.name>
-_UNAME_S_SH= case `uname -s` in *BSD|DragonFly) echo "BSD";; *) uname -s;; esac
-_UNAME_S!= ${_UNAME_S_SH}
-UNAME_S= ${_UNAME_S}$(shell ${_UNAME_S_SH})
-include ${MK}/os-${UNAME_S}.mk
+_OS_SH= case `uname -s` in Linux) echo "Linux";; *) echo "BSD";; esac
+_OS!= ${_OS_SH}
+OS= ${_OS}$(shell ${_OS_SH})
+include ${MK}/os-${OS}.mk