From: Michael Tremer Date: Thu, 9 Oct 2025 17:35:54 +0000 (+0000) Subject: ddns: Pretend we don't have pkg-config to disable systemd detection X-Git-Tag: v2.29-core199~17^2~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e534073a36696082976cacdc3c86daa2eb35a75;p=ipfire-2.x.git ddns: Pretend we don't have pkg-config to disable systemd detection Signed-off-by: Michael Tremer --- diff --git a/lfs/ddns b/lfs/ddns index 470157db0..47358c009 100644 --- a/lfs/ddns +++ b/lfs/ddns @@ -77,10 +77,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-014_gettext-0.25_fix.patch cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh - cd $(DIR_APP) && ./configure \ - --prefix=/usr \ - --sysconfdir=/var/ipfire \ - --disable-manpages + cd $(DIR_APP) && \ + PKG_CONFIG=false \ + ./configure \ + --prefix=/usr \ + --sysconfdir=/var/ipfire \ + --disable-manpages cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install