From: Eneas U de Queiroz Date: Mon, 27 May 2019 13:12:39 +0000 (-0300) Subject: oniguruma: change ${...} to $(...) in Makefile X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e0b250538eae7f4192dea85a38352981bde6c02a;p=openwrt-packages.git oniguruma: change ${...} to $(...) in Makefile Signed-off-by: Eneas U de Queiroz --- diff --git a/libs/oniguruma/Makefile b/libs/oniguruma/Makefile index 33f0e598f..62ba644b8 100644 --- a/libs/oniguruma/Makefile +++ b/libs/oniguruma/Makefile @@ -48,7 +48,7 @@ define Build/InstallDev $(INSTALL_DIR) $(1)/usr/{include,lib} $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/ - $(SED) 's,/usr,${STAGING_DIR}/usr,g' $(1)/usr/lib/pkgconfig/oniguruma.pc + $(SED) 's,/usr,$(STAGING_DIR)/usr,g' $(1)/usr/lib/pkgconfig/oniguruma.pc endef $(eval $(call BuildPackage,oniguruma))