From eedb53a1d27cda2f7d2871e29f5aa4cdd571e7e4 Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Thu, 27 Oct 2016 19:24:13 +0300 Subject: [PATCH] headers: Fix iquote for include/common travis-ci: success for headers: Finalize include/common/ Signed-off-by: Pavel Emelyanov --- Makefile | 2 +- include/common/asm-generic/bitops.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 673618e2f..8d7f82f2d 100644 --- a/Makefile +++ b/Makefile @@ -132,7 +132,7 @@ ifeq ($(GMON),1) export GMON GMONLDOPT endif -CFLAGS += $(WARNINGS) $(DEFINES) -iquote include/common +CFLAGS += $(WARNINGS) $(DEFINES) -iquote include/ # Default target all: criu lib diff --git a/include/common/asm-generic/bitops.h b/include/common/asm-generic/bitops.h index 190e1ab63..cb449fbf8 100644 --- a/include/common/asm-generic/bitops.h +++ b/include/common/asm-generic/bitops.h @@ -8,7 +8,7 @@ #ifndef __CR_GENERIC_BITOPS_H__ #define __CR_GENERIC_BITOPS_H__ -#include "asm/bitsperlong.h" +#include "common/asm/bitsperlong.h" #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_LONG)