Skip to content

Commit

Permalink
next4 script defaults to using mkfs.next4
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Goldstein committed Mar 7, 2011
1 parent a41dc76 commit 47e75ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion next4
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ for dir in /sbin ./bin ; do
if [ -f $dir/fsck.next3 ] ; then
FSCK=$dir/fsck.next3
fi
if [ -f $dir/mkfs.next3 ] ; then
if [ -f $dir/mkfs.next4 ] ; then
MKFS=$dir/mkfs.next4
elif [ -f $dir/mkfs.next3 ] ; then
MKFS=$dir/mkfs.next3
fi
if [ -f $dir/tunefs.next3 ] ; then
Expand Down

0 comments on commit 47e75ba

Please sign in to comment.