Fix include in reduced config files
diff --git a/configs/README.txt b/configs/README.txt
index 7527fdb..bab500d 100644
--- a/configs/README.txt
+++ b/configs/README.txt
@@ -8,6 +8,8 @@
them, you can pick one of the following methods:
1. Replace the default file include/polarssl/config.h with the chosen one.
+ (Depending on your compiler, you may need to ajust the line with
+ #include "polarssl/check_config.h" then.)
2. Define POLARSSL_CONFIG_FILE and adjust the include path accordingly.
For example, using make:
diff --git a/configs/config-mini-tls1_1.h b/configs/config-mini-tls1_1.h
index fd1b0e8..338fecf 100644
--- a/configs/config-mini-tls1_1.h
+++ b/configs/config-mini-tls1_1.h
@@ -51,6 +51,6 @@
/* For testing with compat.sh */
#define POLARSSL_FS_IO
-#include "check_config.h"
+#include "polarssl/check_config.h"
#endif /* POLARSSL_CONFIG_H */
diff --git a/configs/config-psk-rc4-tls1_0.h b/configs/config-psk-rc4-tls1_0.h
index 6a06dc7..99942a6 100644
--- a/configs/config-psk-rc4-tls1_0.h
+++ b/configs/config-psk-rc4-tls1_0.h
@@ -34,6 +34,6 @@
#define POLARSSL_SSL_SRV_C
#define POLARSSL_SSL_TLS_C
-#include "check_config.h"
+#include "polarssl/check_config.h"
#endif /* POLARSSL_CONFIG_H */
diff --git a/configs/config-suite-b.h b/configs/config-suite-b.h
index bfd6048..bac71e9 100644
--- a/configs/config-suite-b.h
+++ b/configs/config-suite-b.h
@@ -51,6 +51,6 @@
/* For testing with compat.sh */
#define POLARSSL_FS_IO
-#include "check_config.h"
+#include "polarssl/check_config.h"
#endif /* POLARSSL_CONFIG_H */