diff options
Diffstat (limited to 'misc/amanda25-server/Makefile')
-rw-r--r-- | misc/amanda25-server/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/amanda25-server/Makefile b/misc/amanda25-server/Makefile index 3b07f3a14120..2b0852c3b031 100644 --- a/misc/amanda25-server/Makefile +++ b/misc/amanda25-server/Makefile @@ -119,6 +119,9 @@ pre-fetch: @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" @${ECHO} " The default is user" + @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" + @${ECHO} " the gnutar index files should live in" + @${ECHO} " The default is /var/amanda/gnutar-lists" @${ECHO} "" CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ @@ -152,6 +155,10 @@ CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} .endif +.if defined (AMANDA_GNUTAR_LISTDIR) +CONFIGURE_ARGS+= --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} +.endif + .endif .include <bsd.port.post.mk> |