diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-07-21 19:58:32 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-07-21 19:58:32 +0000 |
commit | 02a64010107d24037d65b3369cf788cb2d826e67 (patch) | |
tree | 82ffc1e6b7bd2d928f8932c1212163875bfedbd5 /mk | |
parent | 06dc96b19727907861343dd2e0c4b1d3db1214ca (diff) | |
download | pkgsrc-02a64010107d24037d65b3369cf788cb2d826e67.tar.gz |
don't try and do 'mount -o async -u /usr' because we don't know that the user
even has a file system called /usr or that thats the right one.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/pre-build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mk/bulk/pre-build b/mk/bulk/pre-build index ab637154257..c307400c7b6 100644 --- a/mk/bulk/pre-build +++ b/mk/bulk/pre-build @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: pre-build,v 1.16 2001/05/09 03:05:24 hubertf Exp $ +# $NetBSD: pre-build,v 1.17 2001/07/21 19:58:32 dmcmahill Exp $ # # Clean up system to be ready for bulk pkg build # @@ -41,7 +41,6 @@ fi # Clean out everything and it's mother # echo Removing all installed packages -mount -o async -u /usr if [ -d /var/db/pkg ]; then cd /var/db/pkg @@ -92,7 +91,6 @@ rm -f $BROKENF */*/$BROKENF rm -f $BLDLOG */*/$BLDLOG rm -f .start.${arch} -mount -o noasync -u /usr |