[lib][mincrypt] move the mincrypt headers in a level to match the module name

This commit is contained in:
Travis Geiselbrecht
2014-11-05 15:06:55 -08:00
parent 5ed4eca1ba
commit fdc3d1199a
7 changed files with 5 additions and 3 deletions

View File

@@ -7,3 +7,5 @@ GLOBAL_INCLUDES += $(LOCAL_DIR)/include
MODULE_SRCS += \
$(LOCAL_DIR)/sha.c \
$(LOCAL_DIR)/sha256.c
include make/module.mk

View File

@@ -27,7 +27,7 @@
// Optimized for minimal code size.
#include "mincrypt/sha.h"
#include <lib/mincrypt/sha.h>
#include <stdio.h>
#include <string.h>

View File

@@ -27,7 +27,7 @@
// Optimized for minimal code size.
#include "mincrypt/sha256.h"
#include <lib/mincrypt/sha256.h>
#include <stdio.h>
#include <string.h>

View File

@@ -29,7 +29,7 @@
#include <fcntl.h>
#include <errno.h>
#include <mincrypt/sha256.h>
#include <lib/mincrypt/sha256.h>
#include "bootimage.h"