From 20064085455d2f89e2592c8dcb97d3bb5b087f31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Mon, 3 Aug 2015 10:24:05 +0200 Subject: [PATCH] Fix Make bug when installing programs --- ChangeLog | 2 ++ Makefile | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ec6892e4a..e33e3f808 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,8 @@ Bugfix * Fix bug in Makefile that caused libmbedcrypto and libmbedx509 not to be installed (found by Rawi666). * 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). Changes * The PEM parser now accepts a trailing space at end of lines (#226). diff --git a/Makefile b/Makefile index 1c715a6a4..e1fb3cfa6 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,6 @@ install: all then \ f=$(PREFIX)`basename $$p` ; \ cp $$p $(DESTDIR)/bin/$$f ; \ - ln -sf $$f $(DESTDIR)/bin/$$o ; \ fi \ done @@ -50,7 +49,6 @@ uninstall: then \ f=$(PREFIX)`basename $$p` ; \ rm -f $(DESTDIR)/bin/$$f ; \ - rm -f $(DESTDIR)/bin/$$o ; \ fi \ done endif