diff options
| author | mjwybrow <mjwybrow@users.sourceforge.net> | 2009-09-18 08:14:48 +0000 |
|---|---|---|
| committer | mjwybrow <mjwybrow@users.sourceforge.net> | 2009-09-18 08:14:48 +0000 |
| commit | 13f9f918fdc29721ea9fe00f5a9eb62e8b415ac7 (patch) | |
| tree | 555bf53bec6aee89bb754bc8f69a5282628a8296 | |
| parent | update_po_files.sh (diff) | |
| download | inkscape-13f9f918fdc29721ea9fe00f5a9eb62e8b415ac7.tar.gz inkscape-13f9f918fdc29721ea9fe00f5a9eb62e8b415ac7.zip | |
- Send Mac package debugging output to stderr rather than stdout. Fixes
Mac part of bug #168336: "Error message when applying perspective effect".
(bzr r8610)
| -rwxr-xr-x | packaging/macosx/Resources/bin/inkscape | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/macosx/Resources/bin/inkscape b/packaging/macosx/Resources/bin/inkscape index 83c46536d..349b0ebe4 100755 --- a/packaging/macosx/Resources/bin/inkscape +++ b/packaging/macosx/Resources/bin/inkscape @@ -101,7 +101,7 @@ fi LANGSTR=`defaults read .GlobalPreferences AppleCollationOrder 2>/dev/null` if [ "x$LANGSTR" == "x" ] then - echo "Warning: AppleCollationOrder setting not found, using AppleLocale." + echo "Warning: AppleCollationOrder setting not found, using AppleLocale." 1>&2 LANGSTR=`defaults read .GlobalPreferences AppleLocale 2>/dev/null | \ sed 's/_.*//'` fi @@ -110,7 +110,7 @@ fi # to crash on startup in locale_from_utf8(). export LANG="`grep \"\`echo $LANGSTR\`_\" /usr/share/locale/locale.alias | \ tail -n1 | sed 's/\./ /' | awk '{print $2}'`.UTF-8" -echo "Setting Language: $LANG" +echo "Setting Language: $LANG" 1>&2 # Handle the case where the directory storing Inkscape has a '#' in the name. # This '#' needs to be escaped in pango.modules for Pango to work properly. |
