summaryrefslogtreecommitdiff
path: root/src/shared/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-10-03 12:19:30 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-10-04 12:09:50 +0200
commit3211da4bcb951dd0f20e4413be192cb382ddcc32 (patch)
treef28e86cfc5e541c084df16280d26ea65180291ff /src/shared/meson.build
parent70160ce8915b0040e2a7c495ad27b82565e2c5a1 (diff)
downloadsystemd-3211da4bcb951dd0f20e4413be192cb382ddcc32.tar.gz
build-sys: s/HAVE_UTMP/ENABLE_UTMP/
"Have" should be about the external environment and dependencies. Anything which is a pure yes/no choice should be "enable".
Diffstat (limited to 'src/shared/meson.build')
-rw-r--r--src/shared/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/meson.build b/src/shared/meson.build
index bb9720a94a..883821352e 100644
--- a/src/shared/meson.build
+++ b/src/shared/meson.build
@@ -108,7 +108,7 @@ if conf.get('HAVE_ACL') == 1
shared_sources += ['acl-util.c']
endif
-if conf.get('HAVE_UTMP') == 1
+if conf.get('ENABLE_UTMP') == 1
shared_sources += ['utmp-wtmp.c']
endif