Skip to content

Commit

Permalink
update build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
alperakcan committed Dec 8, 2016
1 parent 7f6a75e commit 4b1e24b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ Build from source depends on:
* autoconf
* automake
* libtool
* fuse-dev
* e2fsprogs-dev
* libfuse-dev
* e2fsprogs
* comerr-dev
* e2fslibs-dev

```shell
$ apt-get install m4 autoconf automake libtool
$ apt-get install libfuse-dev e2fslibs-dev
$ apt-get install libfuse-dev e2fsprogs comerr-dev e2fslibs-dev

$ ./autogen.sh
$ ./configure
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ AC_CHECK_FUNCS([ \
# Checks for libraries
AC_SEARCH_LIBS([sem_post], [pthread], [], [AC_MSG_ERROR([Can't find pthreads, please install it])])
AC_SEARCH_LIBS([fuse_main], [osxfuse fuse], [], [AC_MSG_ERROR([Can't find libfuse, please install it])])
AC_SEARCH_LIBS([com_err], [com_err], [], [AC_MSG_ERROR([Can't find e2progs, please install it])])
AC_SEARCH_LIBS([ext2fs_open], [ext2fs], [], [AC_MSG_ERROR([Can't find e2progs, please install it])])
AC_SEARCH_LIBS([com_err], [com_err], [], [AC_MSG_ERROR([Can't find comerr, please install it])])
AC_SEARCH_LIBS([ext2fs_open], [ext2fs], [], [AC_MSG_ERROR([Can't find e2fslibs, please install it])])

AC_MSG_CHECKING([if FUSE on this system is too new for us])
AC_EGREP_CPP([fuse_version_yes], [
Expand Down

0 comments on commit 4b1e24b

Please sign in to comment.