This should make things run more nicely on systems like FreeBSD, where bash isn't installed in /bin.
19 lines
326 B
Bash
19 lines
326 B
Bash
#!/usr/bin/env bash
|
|
# vim: set sw=4 sts=4 et ft=sh :
|
|
|
|
make_enum_HookOutputDestination()
|
|
{
|
|
prefix hod
|
|
|
|
key hod_grab "grab"
|
|
key hod_stdout "stdout"
|
|
|
|
doxygen_comment << "END"
|
|
/**
|
|
* Determines what to do with hook's output.
|
|
*
|
|
* \ingroup g_hooks
|
|
*/
|
|
END
|
|
}
|