diff options
author | Sebastian Kemper <sebastian_ml@gmx.net> | 2018-02-24 11:49:54 +0100 |
---|---|---|
committer | Sebastian Kemper <sebastian_ml@gmx.net> | 2018-02-24 11:49:56 +0100 |
commit | 1cce79f006b5a923cb3bb7fe32e5195677e568cc (patch) | |
tree | 862be21263d212f9682b77e5b9a7c25812776eea /libs/libssh2 | |
parent | 4ac9a2ae8474fc1705506030f82a49fb410a068f (diff) |
libssh2: update InstallDev define
Use $(INSTALL_DATA) for headers and pkgconfig file.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Diffstat (limited to 'libs/libssh2')
-rw-r--r-- | libs/libssh2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libssh2/Makefile b/libs/libssh2/Makefile index 9971659a2..d593c264b 100644 --- a/libs/libssh2/Makefile +++ b/libs/libssh2/Makefile @@ -52,9 +52,9 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(INSTALL_DIR) $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/lib/pkgconfig - $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libssh2.so* $(1)/usr/lib/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libssh2.pc $(1)/usr/lib/pkgconfig/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libssh2.pc $(1)/usr/lib/pkgconfig/ endef define Package/libssh2/install |