diff options
author | grant <grant> | 2004-12-21 14:12:50 +0000 |
---|---|---|
committer | grant <grant> | 2004-12-21 14:12:50 +0000 |
commit | 98813a84db86e2ff5904bd63db6cbc517c79e612 (patch) | |
tree | 35480b1ecd7cdf01a3d3d8c65c51e6f325ea783f /bootstrap | |
parent | d862eb1b1ada95d71fa9538a3a4d6b99a4383bb5 (diff) | |
download | pkgsrc-98813a84db86e2ff5904bd63db6cbc517c79e612.tar.gz |
use /usr/pkg/pkgdb on DragonFly by default
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/mkbinarykit | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstrap/mkbinarykit b/bootstrap/mkbinarykit index e097dca2c7f..00d7d967b21 100755 --- a/bootstrap/mkbinarykit +++ b/bootstrap/mkbinarykit @@ -1,6 +1,6 @@ #!/bin/sh -# $NetBSD: mkbinarykit,v 1.9 2004/06/28 12:09:09 grant Exp $ +# $NetBSD: mkbinarykit,v 1.10 2004/12/21 14:12:50 grant Exp $ # # Make a binary bootstrap kit and place it in targetdir (or current # working directory if not specified). The mk.conf.example file is @@ -35,6 +35,10 @@ AIX) mkfile=/usr/pkg/etc/mk.conf pkgdbdir=/usr/pkg/pkgdb ;; +DragonFly) + # Don't use the ports /var/db/pkg + pkgdbdir=/usr/pkg/pkgdb + ;; FreeBSD) # Don't use the ports /var/db/pkg pkgdbdir=/usr/pkg/pkgdb |