diff options
author | grant <grant@pkgsrc.org> | 2004-12-21 14:12:50 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-21 14:12:50 +0000 |
commit | f8d56aeb25e4b9f7e20d7567675b02525cdfd251 (patch) | |
tree | 35480b1ecd7cdf01a3d3d8c65c51e6f325ea783f /bootstrap | |
parent | e1333f9173f9cf5b929fd179b8fc03c5eb8f8f8e (diff) | |
download | pkgsrc-f8d56aeb25e4b9f7e20d7567675b02525cdfd251.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 |