From 9efe35c78b13a74325daed72a5a80d0cb2b2d6d6 Mon Sep 17 00:00:00 2001 From: cajus Date: Mon, 16 Jun 2008 11:54:02 +0000 Subject: [PATCH] Fixed location.... git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11340 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/debian/patches/04_fix_locale_location.dpatch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gosa-core/debian/patches/04_fix_locale_location.dpatch b/gosa-core/debian/patches/04_fix_locale_location.dpatch index 1f969af3b..a803d251f 100755 --- a/gosa-core/debian/patches/04_fix_locale_location.dpatch +++ b/gosa-core/debian/patches/04_fix_locale_location.dpatch @@ -27,22 +27,22 @@ diff -urNad gosa-2.6.0+svn11288~/update-gosa gosa-2.6.0+svn11288/update-gosa - if (!is_dir(LOCALE_DIR."/compiled/${language}/LC_MESSAGES")){ - if (!mkdir (LOCALE_DIR."/compiled/${language}/LC_MESSAGES", 0755, TRUE)){ - echo "Failed to create '".LOCALE_DIR."/compiled/${language}/LC_MESSAGES'- aborted"; -+ if (!is_dir("/var/cache/gosa/locale/compiled/${language}/LC_MESSAGES")){ -+ if (!mkdir ("/var/cache/gosa/locale/compiled/${language}/LC_MESSAGES", 0755, TRUE)){ -+ echo "Failed to create '/var/cache/gosa/locale/compiled/${language}/LC_MESSAGES'- aborted"; ++ if (!is_dir("/var/cache/gosa/locale/${language}/LC_MESSAGES")){ ++ if (!mkdir ("/var/cache/gosa/locale/${language}/LC_MESSAGES", 0755, TRUE)){ ++ echo "Failed to create '/var/cache/gosa/locale/${language}/LC_MESSAGES'- aborted"; exit (3); } } /* Cat all these po files into one single file */ - system ("(cd ".LOCALE_DIR." && msgcat --use-first ".implode(" ", $po_files)." > compiled/${language}/LC_MESSAGES/messages.po)", $val); -+ system ("(cd ".LOCALE_DIR." && msgcat --use-first ".implode(" ", $po_files)." > /var/cache/gosa/locale/compiled/${language}/LC_MESSAGES/messages.po)", $val); ++ system ("(cd ".LOCALE_DIR." && msgcat --use-first ".implode(" ", $po_files)." > /var/cache/gosa/locale/${language}/LC_MESSAGES/messages.po)", $val); if ($val != 0){ echo "Merging of message files failed - aborted"; exit (4); } - system ("(cd ".LOCALE_DIR."/compiled/${language}/LC_MESSAGES && msgfmt -o messages.mo messages.po && rm messages.po)", $val); -+ system ("(cd /var/cache/gosa/locale/compiled/${language}/LC_MESSAGES && msgfmt -o messages.mo messages.po && rm messages.po)", $val); ++ system ("(cd /var/cache/gosa/locale/${language}/LC_MESSAGES && msgfmt -o messages.mo messages.po && rm messages.po)", $val); if ($val != 0){ echo "Compiling of message files failed - aborted"; exit (5); -- 2.30.2