diff options
author | jschauma <jschauma@pkgsrc.org> | 2002-09-05 18:07:52 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2002-09-05 18:07:52 +0000 |
commit | 8411c736b95b81abf88cfb7b123c8f3742657102 (patch) | |
tree | 628713ebd652f40d8726b72fd341c3a281a3d3d8 /sysutils/amanda-common | |
parent | d0133b219839b669a0db1cc6fa047b6d4c7c3a28 (diff) | |
download | pkgsrc-8411c736b95b81abf88cfb7b123c8f3742657102.tar.gz |
Changes to make amanda* work nicely on Linux:
- do not depend on gtar; GNU/Linux tar is gtar, obviously
- set AMANDA_GROUP as on NetBSD and Darwin
Diffstat (limited to 'sysutils/amanda-common')
-rw-r--r-- | sysutils/amanda-common/Makefile.common | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sysutils/amanda-common/Makefile.common b/sysutils/amanda-common/Makefile.common index a42a48ce5e6..61ec3897c3c 100644 --- a/sysutils/amanda-common/Makefile.common +++ b/sysutils/amanda-common/Makefile.common @@ -1,13 +1,12 @@ -# $NetBSD: Makefile.common,v 1.8 2002/08/25 21:50:54 jlam Exp $ +# $NetBSD: Makefile.common,v 1.9 2002/09/05 18:07:54 jschauma Exp $ # # common make file fragment shared by all amanda-* pkgs. # -.if ${OPSYS} == "NetBSD" -AMANDA_GROUP?= operator -.elif ${OPSYS} == "SunOS" +.if ${OPSYS} == "SunOS" AMANDA_GROUP?= sysadmin -.elif ${OPSYS} == "Darwin" +.else +# NetBSD, Linux and Darwin AMANDA_GROUP?= operator .endif |