diff options
| author | Eneas U de Queiroz | 2019-06-22 08:17:21 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2019-09-04 11:18:46 +0000 |
| commit | 15a5b79132488a00c0df6997b1c5cff145838534 (patch) | |
| tree | 645d951b23848e2886bc052d87f81312db9b23a9 | |
| parent | f1fa1c9d8d8c2024aba3bef4a7f6a0666bbb1604 (diff) | |
| download | openwrt-15a5b79132488a00c0df6997b1c5cff145838534.tar.gz | |
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>
(cherry picked from commit ee1a78331462d0c2394c0e6805e4d12fbfa4882d)
| -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 |