mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 15:35:38 +01:00
Fix Make bug when installing programs
This commit is contained in:
parent
052d10c9d5
commit
2006408545
@ -13,6 +13,8 @@ Bugfix
|
|||||||
* Fix bug in Makefile that caused libmbedcrypto and libmbedx509 not to be
|
* Fix bug in Makefile that caused libmbedcrypto and libmbedx509 not to be
|
||||||
installed (found by Rawi666).
|
installed (found by Rawi666).
|
||||||
* Fix compile error with armcc 5 with --gnu option.
|
* 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
|
Changes
|
||||||
* The PEM parser now accepts a trailing space at end of lines (#226).
|
* The PEM parser now accepts a trailing space at end of lines (#226).
|
||||||
|
2
Makefile
2
Makefile
@ -35,7 +35,6 @@ install: all
|
|||||||
then \
|
then \
|
||||||
f=$(PREFIX)`basename $$p` ; \
|
f=$(PREFIX)`basename $$p` ; \
|
||||||
cp $$p $(DESTDIR)/bin/$$f ; \
|
cp $$p $(DESTDIR)/bin/$$f ; \
|
||||||
ln -sf $$f $(DESTDIR)/bin/$$o ; \
|
|
||||||
fi \
|
fi \
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -50,7 +49,6 @@ uninstall:
|
|||||||
then \
|
then \
|
||||||
f=$(PREFIX)`basename $$p` ; \
|
f=$(PREFIX)`basename $$p` ; \
|
||||||
rm -f $(DESTDIR)/bin/$$f ; \
|
rm -f $(DESTDIR)/bin/$$f ; \
|
||||||
rm -f $(DESTDIR)/bin/$$o ; \
|
|
||||||
fi \
|
fi \
|
||||||
done
|
done
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user