diff options
Diffstat (limited to 'm4/Makefile')
-rw-r--r-- | m4/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/m4/Makefile b/m4/Makefile index d9ca3432..059872a6 100644 --- a/m4/Makefile +++ b/m4/Makefile @@ -1,8 +1,8 @@ # See COPYING for copyright and license details include ../config.mk -SETTINGS=../$(LIBDIR)/settings.html -KEYS=../$(LIBDIR)/keys.html +SETTINGS=../$(HTMLDIR)/settings.html +KEYS=../$(HTMLDIR)/keys.html OUTFILES=$(SETTINGS) $(KEYS) all: $(OUTFILES) @@ -15,11 +15,6 @@ $(SETTINGS): settings.m4 @echo gen settings.html @m4 $(M4FLAGS) $< > $@ -settings.in: settings.pre - @$(shell if pkg-config --exists 'libsoup-2.4 >= 2.38'; then \ - sed 's/^SSL_CERTIFICATION/ssl-use-system-ca-file checkbox Whether to use the system certification file/' $< > $@;\ - else sed 's/^SSL_CERTIFICATION/ssl-ca-file text Path to ssl-certificate/;/^addressbar-dns-lookup/d' $< > $@; fi) - clean: $(RM) $(OUTFILES) settings.in |