diff options
author | Richard Levitte <levitte@openssl.org> | 2016-01-25 22:23:42 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-01-25 22:23:42 +0100 |
commit | 05e4e63366593298a362393c8152863771d92130 (patch) | |
tree | 96f7b32550f9bb1fd21177858e110fb066582d76 /engines | |
parent | Small cleanups in Configure (diff) | |
download | openssl-05e4e63366593298a362393c8152863771d92130.tar.xz openssl-05e4e63366593298a362393c8152863771d92130.zip |
Small Makefile.in cleanup
engines_obj changed name to padlock_obj in Configure. We need to do
the corresponding ENGINES_ASM_OBJ -> PADLOCK_ASM_OBJ in appropriate
Makefile.ins.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'engines')
-rw-r--r-- | engines/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/Makefile.in b/engines/Makefile.in index 53a0ca124d..b2580199b9 100644 --- a/engines/Makefile.in +++ b/engines/Makefile.in @@ -13,7 +13,7 @@ CFLAG=-g MAKEFILE= Makefile AR= ar r -ENGINES_ASM_OBJ= +PADLOCK_ASM_OBJ= PEX_LIBS= EX_LIBS= @@ -34,7 +34,7 @@ LIBOBJ= \ e_padlock.o \ e_capi.o \ e_dasync.o \ - $(ENGINES_ASM_OBJ) + $(PADLOCK_ASM_OBJ) TESTLIBNAMES= ossltest TESTLIBSRC= e_ossltest.c |