1173295Skrion/*-
2173295Skrion * ----------------------------------------------------------------------------
3173295Skrion * "THE BEER-WARE LICENSE" (Revision 42):
4173295Skrion * <beat@chruetertee.ch> wrote this file. As long as you retain this notice you
5173295Skrion * can do whatever you want with this stuff. If we meet some day, and you think
6173295Skrion * this stuff is worth it, you can buy me a beer in return.          Beat G�tzi
7173295Skrion * ----------------------------------------------------------------------------
8173295Skrion *
9173295Skrion * $FreeBSD$
10173295Skrion *
11173295Skrion */
12173295Skrion
13173514Skrion/* Where the updating file lives by default */
14173514Skrion#define DEF_UPDATING "/usr/ports/UPDATING"
15173514Skrion/* macro to define location of the UPDATING file */
16173295Skrion#define UPDATING (getenv(PORTSDIR) ? strcat(getenv(PORTSDIR), \
17173514Skrion        "/UPDATING") : DEF_UPDATING)
18