summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-05-23 07:59:22 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-05-23 08:01:16 +0200
commitc75955baff986e61d320693edffb6a735d4aedcd (patch)
treeb69faa5c3a4821d8613b78b1aec5d6372d37265b
parente0e35182a5fe9594de4d141fdb6784e9367a07da (diff)
downloadbuildroot-c75955baff986e61d320693edffb6a735d4aedcd.tar.gz
buildroot-c75955baff986e61d320693edffb6a735d4aedcd.zip
systemd: fix -Dlibidn2 option when libidn2 is not available
Commit 4ded5d6af4f0198036183f00de190569d7578bc3 ("systemd: add optional dependency on libidn2") contained a mistake: -Dlibidn2=true was passed even when neither libidn nor libidn2 are available. Obviously it should be -Dlibidn2=false. Reported-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r--package/systemd/systemd.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk
index 1e4b257731..8f7a9fa93c 100644
--- a/package/systemd/systemd.mk
+++ b/package/systemd/systemd.mk
@@ -83,7 +83,7 @@ else ifeq ($(BR2_PACKAGE_LIBIDN),y)
SYSTEMD_DEPENDENCIES += libidn
SYSTEMD_CONF_OPTS += -Dlibidn=true -Dlibidn2=false
else
-SYSTEMD_CONF_OPTS += -Dlibidn=false -Dlibidn2=true
+SYSTEMD_CONF_OPTS += -Dlibidn=false -Dlibidn2=false
endif
ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
OpenPOWER on IntegriCloud