[btls] Fix library install
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 28 Oct 2016 13:52:04 +0000 (15:52 +0200)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 28 Oct 2016 13:52:27 +0000 (15:52 +0200)
We need to ensure the directory is created and doesn't have an extraneous '/' char.

mono/btls/Makefile.am

index 4f640bead0b48af843e84f9bad5ec66905541d60..dfa34c29a9d51ddce75a7798f7d315fad72fad23 100644 (file)
@@ -61,4 +61,5 @@ clean-local:
        -rm -rf build-shared
 
 install-exec-local:
-       $(install_sh) build-shared/libmono-btls-shared.* "$(DESTDIR)/$(libdir)"
+       $(mkinstalldirs) "$(DESTDIR)$(libdir)"
+       $(install_sh) build-shared/libmono-btls-shared.* "$(DESTDIR)$(libdir)"