Hi! On Thu, 15 Jan 2009 16:03:07 +0100, "Milos Jana" wrote: > I managed to apply the patch (the file fsck0.nilfs2.c was created) but > after building nilfs-utils I can't find fsck0.nilfs2 command, it looks > like it was not compiled. > > Here is build log: http://wklej.org/id/39551/
Okay. In some environment, Makefiles are not regenerated automatically. You may have to run automake and autoconf before running the ./configure script. The full build procedures are as follows: $ tar jxf nilfs-utils-2.0.6.tar.bz2 $ cd nilfs-utils-2.0.6 $ patch -p1 < path-to-fsck0.patch [ usually omissible $ aclocal $ autoheader $ libtoolize -c --force $ automake -a -c $ autoconf ] $ ./configure $ make $ sudo make install $ sudo fsck0.nilfs2 <device> If your machine doesn't have autoconf, automake, or libtool package, these may be required in advance. How did it come out? Ryusuke _______________________________________________ users mailing list [email protected] https://www.nilfs.org/mailman/listinfo/users
