diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2019-06-22 10:17:21 +0200 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2019-06-22 10:23:56 +0200 |
commit | ee1a78331462d0c2394c0e6805e4d12fbfa4882d (patch) | |
tree | ee284e6aad4c7eb33d76c4dcf256ab46ea2bb739 | |
parent | 9fc03832bc46b13b377cbe2f6d1acca45f1ad002 (diff) | |
download | upstream-ee1a78331462d0c2394c0e6805e4d12fbfa4882d.tar.gz upstream-ee1a78331462d0c2394c0e6805e4d12fbfa4882d.tar.bz2 upstream-ee1a78331462d0c2394c0e6805e4d12fbfa4882d.zip |
nghttp2: deduplicate files in staging_dir
'38b22b1e: deduplicate files in libnghttp2' missed duplicates in
staging_dir by Build/InstallDev.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
-rw-r--r-- | package/libs/nghttp2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/nghttp2/Makefile b/package/libs/nghttp2/Makefile index b96ebd8acb..2f0b4bcabc 100644 --- a/package/libs/nghttp2/Makefile +++ b/package/libs/nghttp2/Makefile @@ -35,7 +35,7 @@ define Build/InstallDev $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/nghttp2/*.h $(1)/usr/include/nghttp2/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig/ - $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libnghttp2.so* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnghttp2.so* $(1)/usr/lib/ endef define Package/libnghttp2/install |