From 6f32170db079cedc742861b49dc68df8464eebf5 Mon Sep 17 00:00:00 2001 From: mike Date: Wed, 31 Aug 2011 00:54:27 +0000 Subject: [PATCH] The configure script incorrectly used bundle-based localizations on Linux (STR #3938) git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@9937 7a7537e8-13f0-0310-91df-b6672ffda945 --- CHANGES-1.5.txt | 2 ++ configure.in | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES-1.5.txt b/CHANGES-1.5.txt index a00c018c81..140d30dddb 100644 --- a/CHANGES-1.5.txt +++ b/CHANGES-1.5.txt @@ -4,6 +4,8 @@ CHANGES-1.5.txt CHANGES IN CUPS V1.5.1 - Documentation updates (STR #3885) + - The configure script incorrectly used bundle-based localizations on + Linux (STR #3938) - The cups-driverd helper program did not cache .drv files properly, sometimes leading to a crash (STR #3921) - CUPS did not build on stock Mac OS X installations. diff --git a/configure.in b/configure.in index 0e8eb0b934..264b6ad13a 100644 --- a/configure.in +++ b/configure.in @@ -54,7 +54,7 @@ if test "x$LANGUAGES" != x; then LANGFILES="$LANGFILES templates/$lang/header.tmpl" fi done -elif test "x$CUPS_BUNDLEDIR" != ""; then +elif test "x$CUPS_BUNDLEDIR" != x; then INSTALL_LANGUAGES="install-langbundle" UNINSTALL_LANGUAGES="uninstall-langbundle" fi -- 2.47.2