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/
This commit is contained in:
lwthiker
2022-04-15 18:23:15 +03:00
committed by GitHub
parent 4bd8671112
commit a79b14f5fc

View File

@@ -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
```