diff options
author | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2014-08-02 00:54:06 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> | 2014-08-02 00:54:06 +0200 |
commit | 9c0c792f6ec077837b1381f777fe69c634d2dc3f (patch) | |
tree | 51da9cf08cc17a448411979c39919f0cd9855ff6 /main/polarssl/programs.makefile.patch | |
parent | f4252f16e259774095ac22dc397cfedeab41d770 (diff) | |
download | aports-9c0c792f6ec077837b1381f777fe69c634d2dc3f.tar.bz2 aports-9c0c792f6ec077837b1381f777fe69c634d2dc3f.tar.xz |
main/polarssl: fix Makefile to correctly build cert_write
Diffstat (limited to 'main/polarssl/programs.makefile.patch')
-rw-r--r-- | main/polarssl/programs.makefile.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/polarssl/programs.makefile.patch b/main/polarssl/programs.makefile.patch new file mode 100644 index 0000000000..421f39cfcb --- /dev/null +++ b/main/polarssl/programs.makefile.patch @@ -0,0 +1,22 @@ +--- programs/Makefile 2014-07-31 12:20:17.748459143 -0400 ++++ programs/Makefile 2014-07-31 12:21:35.388454356 -0400 +@@ -43,7 +43,7 @@ + test/selftest test/ssl_test \ + util/pem2der util/strerror \ + x509/cert_app x509/crl_app \ +- x509/cert_req ++ x509/cert_req x509/cert_write + + ifdef OPENSSL + APPS += test/o_p_test +@@ -241,6 +241,10 @@ + echo " CC x509/cert_req.c" + $(CC) $(CFLAGS) $(OFLAGS) x509/cert_req.c $(LDFLAGS) -o $@ + ++x509/cert_write: x509/cert_write.c ../library/libpolarssl.a ++ echo " CC x509/cert_write.c" ++ $(CC) $(CFLAGS) $(OFLAGS) x509/cert_write.c $(LDFLAGS) -o $@ ++ + clean: + ifndef WINDOWS + rm -f $(APPS) |