summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2010-08-02 20:34:30 +0200
committerMiloslav Trmač <mitr@redhat.com>2010-08-02 20:34:30 +0200
commita237e649fa370a5a56738e77002e241658e49636 (patch)
treed269f24d9a61b599e6c926949f64942483934247 /crypto
parent62f5aece10b87f58e79892601f5fe01dd6d89291 (diff)
downloadkernel-crypto-a237e649fa370a5a56738e77002e241658e49636.tar.gz
kernel-crypto-a237e649fa370a5a56738e77002e241658e49636.tar.xz
kernel-crypto-a237e649fa370a5a56738e77002e241658e49636.zip
Explicitly add crypto/userspace to #include path
This is necessary for in-tree builds, where this path is not added by default. The alternative of using #include "..." is inconvenient for libtomcrypt headers nested several subdirectories deep that need to refer to ncr-int.h.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/userspace/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/userspace/Makefile b/crypto/userspace/Makefile
index e82aabdbd7e..65edf8fb2ce 100644
--- a/crypto/userspace/Makefile
+++ b/crypto/userspace/Makefile
@@ -1,4 +1,4 @@
-ccflags-y += -I$(src)/libtommath -I$(src)/libtomcrypt/headers -DLTC_SOURCE
+ccflags-y += -I$(src)/libtommath -I$(src)/libtomcrypt/headers -I$(src) -DLTC_SOURCE
TOMMATH_OBJECTS = libtommath/bncore.o libtommath/bn_mp_init.o libtommath/bn_mp_clear.o libtommath/bn_mp_exch.o libtommath/bn_mp_grow.o libtommath/bn_mp_shrink.o \
libtommath/bn_mp_clamp.o libtommath/bn_mp_zero.o libtommath/bn_mp_set.o libtommath/bn_mp_set_int.o libtommath/bn_mp_init_size.o libtommath/bn_mp_copy.o \