2007-11-02 22:46:30 +00:00
|
|
|
/*-
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <beat@chruetertee.ch> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
2011-12-30 00:59:08 +00:00
|
|
|
* this stuff is worth it, you can buy me a beer in return. Beat Gätzi
|
2007-11-02 22:46:30 +00:00
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-11-10 10:21:29 +00:00
|
|
|
/* Where the updating file lives by default */
|
|
|
|
#define DEF_UPDATING "/usr/ports/UPDATING"
|
|
|
|
/* macro to define location of the UPDATING file */
|
2007-11-02 22:46:30 +00:00
|
|
|
#define UPDATING (getenv(PORTSDIR) ? strcat(getenv(PORTSDIR), \
|
2007-11-10 10:21:29 +00:00
|
|
|
"/UPDATING") : DEF_UPDATING)
|