01ea2a8822
hardcoded +CONTENTS defines. PR: bin/117855 Submitted by: Beat Gaetzi <beat@chruetertee.ch> MFC after: 14 days
18 lines
713 B
C
18 lines
713 B
C
/*-
|
|
* ----------------------------------------------------------------------------
|
|
* "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
|
|
* this stuff is worth it, you can buy me a beer in return. Beat Gätzi
|
|
* ----------------------------------------------------------------------------
|
|
*
|
|
* $FreeBSD$
|
|
*
|
|
*/
|
|
|
|
/* Where the updating file lives by default */
|
|
#define DEF_UPDATING "/usr/ports/UPDATING"
|
|
/* macro to define location of the UPDATING file */
|
|
#define UPDATING (getenv(PORTSDIR) ? strcat(getenv(PORTSDIR), \
|
|
"/UPDATING") : DEF_UPDATING)
|