From 9983993e27b68646444d8422de59ff06799619b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Mon, 3 Aug 2015 10:34:09 +0200 Subject: [PATCH] Fix bug with make install without tests closes #232 --- ChangeLog | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e33e3f808..62658ac2d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,8 @@ Bugfix * Fix compile error with armcc 5 with --gnu option. * Fix bug in Makefile that caused programs not to be installed correctly (found by robotanarchy) (#232). + * Fix bug in Makefile that prevented from installing without building the + tests (found by robotanarchy) (#232). Changes * The PEM parser now accepts a trailing space at end of lines (#226). diff --git a/Makefile b/Makefile index e1fb3cfa6..7f03115b0 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ tests: lib $(MAKE) -C tests ifndef WINDOWS -install: all +install: no_test mkdir -p $(DESTDIR)/include/mbedtls cp -r include/mbedtls $(DESTDIR)/include