1/*-
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <beat@chruetertee.ch> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return.          Beat G�tzi
7 * ----------------------------------------------------------------------------
8 *
9 * $FreeBSD$
10 *
11 */
12
13/* Where the updating file lives by default */
14#define DEF_UPDATING "/usr/ports/UPDATING"
15/* macro to define location of the UPDATING file */
16#define UPDATING (getenv(PORTSDIR) ? strcat(getenv(PORTSDIR), \
17        "/UPDATING") : DEF_UPDATING)
18