diff options
| author | Roland Bauerschmidt <rb@debian.org> | 2002-04-12 14:32:43 +0000 |
|---|---|---|
| committer | Roland Bauerschmidt <rb@debian.org> | 2002-04-12 14:32:43 +0000 |
| commit | f0cd8e4c394b16c496ed08a3448be0b5fdbfa5e5 (patch) | |
| tree | d92397db472ae293732e5865e7ac748061af875c | |
| parent | d99aa52ddbd478a4fb124d1e1621f3bfa68bab32 (diff) | |
| download | libfuse-f0cd8e4c394b16c496ed08a3448be0b5fdbfa5e5.tar.gz | |
Changed #include "fusestat.h" to #include <fusestat.h> and added fusestat.h
to include/Makefile.am, so that building with headers in /usr/include
works.
| -rw-r--r-- | include/Makefile.am | 2 | ||||
| -rw-r--r-- | include/fuse.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 9e67b61..baeb37e 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -2,4 +2,4 @@ SUBDIRS = linux -include_HEADERS = fuse.h +include_HEADERS = fuse.h fusestat.h diff --git a/include/fuse.h b/include/fuse.h index 451e163..b75978c 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -15,7 +15,7 @@ #include <sys/stat.h> #include <utime.h> -#include "fusestat.h" +#include <fusestat.h> /* ----------------------------------------------------------- * * Basic FUSE API * * ----------------------------------------------------------- */ |
