diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-06 22:51:06 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-06 22:51:06 +0000 |
commit | 7a84b3e207decf8693c0cd5a7d51506442b4ff6e (patch) | |
tree | 5febb0ca30a134dcae12629e797e5f3f55be31cd /distrib/i386 | |
parent | 077b42684177a1c282f302d60e4d274466092d54 (diff) |
X and f were reversed.
Diffstat (limited to 'distrib/i386')
-rw-r--r-- | distrib/i386/floppies/inst/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/floppies/inst/install.sh b/distrib/i386/floppies/inst/install.sh index 6a4a224101e..21724e66e95 100644 --- a/distrib/i386/floppies/inst/install.sh +++ b/distrib/i386/floppies/inst/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.8 1996/07/16 22:57:02 deraadt Exp $ +# $OpenBSD: install.sh,v 1.9 1996/08/06 22:51:05 downsj Exp $ # # Copyright (c) 1994 Christopher G. Demetriou # All rights reserved. @@ -458,7 +458,7 @@ fi echo "" echo "Populating filesystems with bootstrapping binaries and config files" -$DONTDOIT tar -cfX - . | (cd /mnt ; tar -xpf - ) +$DONTDOIT tar -cXf - . | (cd /mnt ; tar -xpf - ) $DONTDOIT cp /tmp/.hdprofile /mnt/.profile echo "" |