diff options
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | bcacheadm.c | 3 |
2 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,8 @@ PREFIX=/usr UDEVLIBDIR=/lib/udev DRACUTLIBDIR=/lib/dracut INSTALL=install -CFLAGS+=-std=gnu99 -O2 -Wall -Werror -g -I. +CFLAGS+=-std=gnu99 -O2 -Wall -Werror -g -Iinclude +LDFLAGS+=-static all: bcacheadm probe-bcache diff --git a/bcacheadm.c b/bcacheadm.c index d6e2d869..792b5b79 100644 --- a/bcacheadm.c +++ b/bcacheadm.c @@ -22,13 +22,12 @@ #include <stdint.h> #include <blkid.h> #include <string.h> -#include <linux/fs.h> #include <sys/ioctl.h> #include <sys/types.h> #include <sys/stat.h> #include <uuid/uuid.h> #include <dirent.h> -#include <bcache.h> //libbcache +#include "bcache.h" //libbcache #define PACKAGE_NAME "bcacheadm" #define PACKAGE_VERSION "1.0" |