diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-11-23 22:55:38 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-11-24 00:24:46 +0100 |
commit | 0979f2855c81d144d4c7d814678a5b5b2d34155b (patch) | |
tree | ced53cd8ef7b46f115fff103d095e37f7820ae44 /src/core/locale-setup.c | |
parent | 92134489ab35f6d173cb6fb6f676c1b5d88f5556 (diff) |
build-sys: drop TARGET_UBUNTU
TARGET_UBUNTU is effectively the same as TARGET_DEBIAN. Given the Ubuntu
is unlikely to use systemd anytime soon there's no point in keeping this
separate.
Diffstat (limited to 'src/core/locale-setup.c')
-rw-r--r-- | src/core/locale-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/locale-setup.c b/src/core/locale-setup.c index 0a0f95b909..8821fc2a2d 100644 --- a/src/core/locale-setup.c +++ b/src/core/locale-setup.c @@ -141,7 +141,7 @@ int locale_setup(void) { log_warning("Failed to read /etc/sysconfig/language: %s", strerror(-r)); } -#elif defined(TARGET_DEBIAN) || defined(TARGET_UBUNTU) || defined(TARGET_ANGSTROM) +#elif defined(TARGET_DEBIAN) || defined(TARGET_ANGSTROM) if (r <= 0) { r = parse_env_file("/etc/default/locale", NEWLINE, "LANG", &variables[VARIABLE_LANG], |