]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
demo: Fix makefile target
authorPauli <pauli@openssl.org>
Tue, 14 Mar 2023 00:33:51 +0000 (11:33 +1100)
committerPauli <pauli@openssl.org>
Wed, 15 Mar 2023 02:58:01 +0000 (13:58 +1100)
The makefile target was incorrect and wouldn't build the rsa_encrypt demo.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20503)

demos/encrypt/Makefile

index 1735640b3f232e15c7cc3fbd8e50355a7003d9b5..d07dc0caedc14b5054e6425fbd97a371904878e7 100644 (file)
@@ -12,7 +12,7 @@ all: rsa_encrypt
 %.o: %.c
        $(CC) $(CFLAGS) -c $<
 
-rsa_encrypt_ec: rsa_encrypt.o
+rsa_encrypt: rsa_encrypt.o
 
 test: ;