From a79b14f5fc853312439fd5126827dcfd538b34ed Mon Sep 17 00:00:00 2001 From: lwthiker <99899249+lwthiker@users.noreply.github.com> Date: Fri, 15 Apr 2022 18:23:15 +0300 Subject: [PATCH] Update INSTALL.md On some systems (Ubuntu), after doing 'make firefox-install' or 'make chrome-install', the linker can't find libcurl-impersonate. Instruct users to run 'ldconfig' manually after installation to refresh the linker's cache, so it finds libcurl-impersonate in /usr/local/ --- INSTALL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 871e264..3f85422 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -43,6 +43,8 @@ sudo make firefox-install # Build and install the Chrome version make chrome-build sudo make chrome-install +# You may need to update the linker's cache to find libcurl-impersonate +sudo ldconfig # Optionally remove all the build files cd ../ && rm -Rf build ```