Skip to content

Commit

Permalink
Don't systematically rebuild programs
Browse files Browse the repository at this point in the history
Fix the dependency on libmbedcrypto.a, which is now located under
crypto.

Fix Mbed-TLS#2682
  • Loading branch information
gilles-peskine-arm committed Jun 7, 2019
1 parent 7be9b4e commit 95f5cbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions programs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ LOCAL_CFLAGS += -I../crypto/include
LOCAL_CXXFLAGS += -I../crypto/include

ifndef SHARED
DEP=../library/libmbedcrypto.a ../library/libmbedx509.a ../library/libmbedtls.a
DEP=../crypto/library/libmbedcrypto.a ../library/libmbedx509.a ../library/libmbedtls.a
else
DEP=../library/libmbedcrypto.$(DLEXT) ../library/libmbedx509.$(DLEXT) ../library/libmbedtls.$(DLEXT)
DEP=../crypto/library/libmbedcrypto.$(DLEXT) ../library/libmbedx509.$(DLEXT) ../library/libmbedtls.$(DLEXT)
endif

ifdef DEBUG
Expand Down

0 comments on commit 95f5cbc

Please sign in to comment.