diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-07-21 19:07:32 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-07-21 19:07:32 +0000 |
commit | 048a5d0a01749c467f6966312ac1198385e480db (patch) | |
tree | b38af7867a3bbd5724f439721ce5e7b222f1e4df /sysutils/amanda-common/Makefile.common | |
parent | f2329debeb8253b06ca95805c56a550a423f6b8f (diff) | |
download | pkgsrc-048a5d0a01749c467f6966312ac1198385e480db.tar.gz |
Add a default AMANDA_GROUP for Darwin, and use canonical pkgsrc
config.guess and config.sub. Noted by Randy Beaudreault
<maccult@pacbell.net> in private mail.
Diffstat (limited to 'sysutils/amanda-common/Makefile.common')
-rw-r--r-- | sysutils/amanda-common/Makefile.common | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysutils/amanda-common/Makefile.common b/sysutils/amanda-common/Makefile.common index 0414576fccb..c6ec5734415 100644 --- a/sysutils/amanda-common/Makefile.common +++ b/sysutils/amanda-common/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.6 2001/10/19 09:44:10 veego Exp $ +# $NetBSD: Makefile.common,v 1.7 2002/07/21 19:07:32 schmonz Exp $ # # common make file fragment shared by all amanda-* pkgs. # @@ -7,6 +7,8 @@ AMANDA_GROUP?= operator .elif ${OPSYS} == "SunOS" AMANDA_GROUP?= sysadmin +.elif ${OPSYS} == "Darwin" +AMANDA_GROUP?= operator .endif AMANDA_USER?= backup @@ -16,6 +18,8 @@ BUILD_DEFS+= AMANDA_USER AMANDA_GROUP AMANDA_SMB AMANDA_VAR USE_LIBTOOL= yes LTCONFIG_OVERRIDE= ${WRKSRC}/config/ltconfig +CONFIG_GUESS_OVERRIDE= ${WRKSRC}/config/config.guess +CONFIG_SUB_OVERRIDE= ${WRKSRC}/config/config.sub GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-user=${AMANDA_USER} |