From: Michael Orlitzky Date: Mon, 2 Feb 2026 22:16:17 +0000 (-0500) Subject: makefile: update install path for v147 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=firefox-user-prefs.git makefile: update install path for v147 XDG support after 20+ years, what a time to be alive. --- diff --git a/makefile b/makefile index 68594ff..f1c2a26 100644 --- a/makefile +++ b/makefile @@ -24,7 +24,7 @@ clean: # in that one place too. .PHONY: install install: $(OUTPUT) - for dir in ~/.mozilla/firefox/*.*; do \ + for dir in ~/.config/mozilla/firefox/*.*; do \ if [ -f "$${dir}/prefs.js" ]; then \ if [ ! -e "$${dir}/$(OUTPUT)" ]; then \ ln -s "$(shell pwd)/$(OUTPUT)" "$${dir}/$(OUTPUT)"; \