From: Yanjiang Jin <[email protected]>
This is to eliminate the below compile error:
crypto/rsa_helper.c:19:29: fatal error: rsaprivkey-asn1.h: No such file or directory
#include "rsaprivkey-asn1.h"
^
compilation terminated.
Signed-off-by: Yanjiang Jin <[email protected]>
---
crypto/{rsaprivkey.asn1 => rsaprivkey.asn1.h} | 0
crypto/{rsapubkey.asn1 => rsapubkey.asn1.h} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename crypto/{rsaprivkey.asn1 => rsaprivkey.asn1.h} (100%)
rename crypto/{rsapubkey.asn1 => rsapubkey.asn1.h} (100%)
diff --git a/crypto/rsaprivkey.asn1 b/crypto/rsaprivkey.asn1.h
similarity index 100%
rename from crypto/rsaprivkey.asn1
rename to crypto/rsaprivkey.asn1.h
diff --git a/crypto/rsapubkey.asn1 b/crypto/rsapubkey.asn1.h
similarity index 100%
rename from crypto/rsapubkey.asn1
rename to crypto/rsapubkey.asn1.h
--
2.9.3
[email protected] wrote:
> From: Yanjiang Jin <[email protected]>
>
> This is to eliminate the below compile error:
>
> crypto/rsa_helper.c:19:29: fatal error: rsaprivkey-asn1.h: No such file or directory
> #include "rsaprivkey-asn1.h"
> ^
> compilation terminated.
>
> Signed-off-by: Yanjiang Jin <[email protected]>
This patch is bogus. The header files are meant to be generated.
Please find out why they are not being generated in your case.
Thanks,
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
Thanks for Herbert's reminder.
I have drop this patch in a previous mail.
Regards!
Yanjiang
On 2016年11月08日 20:09, Herbert Xu wrote:
> [email protected] wrote:
>> From: Yanjiang Jin <[email protected]>
>>
>> This is to eliminate the below compile error:
>>
>> crypto/rsa_helper.c:19:29: fatal error: rsaprivkey-asn1.h: No such file or directory
>> #include "rsaprivkey-asn1.h"
>> ^
>> compilation terminated.
>>
>> Signed-off-by: Yanjiang Jin <[email protected]>
> This patch is bogus. The header files are meant to be generated.
> Please find out why they are not being generated in your case.
>
> Thanks,